eolymp
bolt
Try our new interface for solving problems
Problems

Compare Big Integers

Compare Big Integers

Time limit 1 second
Memory limit 128 MiB

Two big integers are given. Find which is bigger.

Input data

Two lines contains two big integers a and b (1a, b10^1000).

Output data

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

Examples

Input example #1
3
5
Output example #1
<
Input example #2
5
5
Output example #2
=
Input example #3
5
3
Output example #3
>