100780: [AtCoder]ABC078 A - HEX

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $100$ points

Problem Statement

In programming, hexadecimal notation is often used.

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

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

When $X$ and $Y$ are seen as hexadecimal numbers, which is larger?

Constraints

  • Each $X$ and $Y$ is A, B, C, D, E or F.

Input

Input is given from Standard Input in the following format:

$X$ $Y$

Output

If $X$ is smaller, print <; if $Y$ is smaller, print >; if they are equal, print =.


Sample Input 1

A B

Sample Output 1

<

$10 < 11$.


Sample Input 2

E C

Sample Output 2

>

$14 > 12$.


Sample Input 3

F F

Sample Output 3

=

$15 = 15$.

Input

题意翻译

编程中常用16进制数。 16进制数中,除0、1、 ... 9 数字外,还使用A、B、C、D、E、F 6个字母,分别表示10、11、12、13、14、15 在这个问题上2字母X,Y被给予。X Y两个都是A, B, C, D, E, F中的一个。 当把X Y16进制数看作进数时,请判定哪个大。

加入题单

算法标签: