Write a program which prints small/large/equal relation of given two integers a and b.
Two integers a and b separated by a single space are given in a line.
For given two integers a and b, print
a < b
if a is less than b,
a > b
if a is greater than b, and
a == b
if a equals to b.
1 2
a < b
4 3
a > b
5 5
a == b