410052: GYM103931 N Nine Is Greater Than Ten

Memory Limit:1024 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

N. Nine Is Greater Than Tentime limit per test1 secondmemory limit per test1024 megabytesinputstandard inputoutputstandard output

Koji, the mathematician and philosopher, is hereby proving the statement that $$$$$$\Huge\text{9 > 10}$$$$$$ by the following solid proof.

Proof. We write down two numbers in decimal representation. $$$$$$\Large \underline{\texttt{9}}\texttt{.}$$$$$$ $$$$$$\Large \underline{\texttt{1}}\texttt{0}$$$$$$

Look at the first digit that they are different at! Since $$$9 > 1$$$, we proved that $$$9 > 10$$$.    $$$Q.E.D.$$$

Again, you can easily use the same argument to prove $$$114\,514 < 1919$$$: $$$$$$\Large \texttt{1}\underline{\texttt{1}}\texttt{4514}$$$$$$ $$$$$$\Large \texttt{1}\underline{\texttt{9}}\texttt{19..}$$$$$$ and $$$9 < 999$$$: $$$$$$\Large \texttt{9}\underline{\texttt{.}}\texttt{.}$$$$$$ $$$$$$\Large \texttt{9}\underline{\texttt{9}}\texttt{9}$$$$$$

Wow, that is math! How logical it is! Now you have fully understood how the Koji compares two numbers. Write a program to compare two input numbers!

Input

A single input line consists of two positive integers $$$a, b~(1 \leq a, b \leq 20\,220\,924)$$$ seperated by a single space, both are guaranteed without leading zeros.

Output

Print a single line by the method of Koji Comparison,

  • If $$$a>b$$$, print "$$$a$$$>$$$b$$$" (without quotes).
  • If $$$a<b$$$, print "$$$a$$$<$$$b$$$" (without quotes).
  • If $$$a=b$$$, print "$$$a$$$=$$$b$$$" (without quotes).
ExamplesInput
9 10
Output
9>10
Input
114514 1919
Output
114514<1919
Input
9 999
Output
9<999
Input
99 99
Output
99=99
Input
2022 924
Output
2022<924

加入题单

算法标签: