#abc078a. [abc078_a]HEX
[abc078_a]HEX
Problem Statement
In programming, hexadecimal notation is often used.
In hexadecimal notation, besides the ten digits , the six letters A
, B
, C
, D
, E
and F
are used to represent the values and , respectively.
In this problem, you are given two letters and . Each and is A
, B
, C
, D
, E
or F
.
When and are seen as hexadecimal numbers, which is larger?
Constraints
- Each and is
A
,B
,C
,D
,E
orF
.
Input
Input is given from Standard Input in the following format:
Output
If is smaller, print <
; if is smaller, print >
; if they are equal, print =
.
Sample Input 1
A B
Sample Output 1
<
.
Sample Input 2
E C
Sample Output 2
>
.
Sample Input 3
F F
Sample Output 3
=
.