100 atcoder#ABC078A. [ABC078A] HEX
[ABC078A] HEX
Score : points
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 =
.
A B
<
.
E C
>
.
F F
=
.