Problem1044--two number relation

1044: two number relation

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

Write a program which prints small/large/equal relation of given two integers a and b

Input

Two integers a and b separated by a single space are given in a line.

Output

For the given two integers a and b, print
a<b  if a is less than b
a>b if a is bigger than b and 
a==b if a equals to b

Sample Input Copy

4 6

Sample Output Copy

a<b

Source/Category