100 #ABC078A. [ABC078A] HEX

[ABC078A] HEX

Score : 100100 points

Problem Statement

In programming, hexadecimal notation is often used.

In hexadecimal notation, besides the ten digits 0,1,...,90, 1, ..., 9, the six letters A, B, C, D, E and F are used to represent the values 10,11,12,13,1410, 11, 12, 13, 14 and 1515, respectively.

In this problem, you are given two letters XX and YY. Each XX and YY is A, B, C, D, E or F.

When XX and YY are seen as hexadecimal numbers, which is larger?

Constraints

  • Each XX and YY is A, B, C, D, E or F.

Input

Input is given from Standard Input in the following format:

XX YY

Output

If XX is smaller, print <; if YY is smaller, print >; if they are equal, print =.

A B
<

10<1110 < 11.

E C
>

14>1214 > 12.

F F
=

15=1515 = 15.