eolymp
bolt
Try our new interface for solving problems
Problems

Compare Big Integers

Compare Big Integers

Two big integers are given. Find which is bigger.

Input

Two lines contains two big integers a and b (1a, b101000).

Output

Print one of signs: "<", "=", ">".

Time limit 1 second
Memory limit 128 MiB
Input example #1
3
5
Output example #1
<
Input example #2
5
5
Output example #2
=
Input example #3
5
3
Output example #3
>