eolymp
bolt
Try our new interface for solving problems
Problems

Number as string

Number as string

Time limit 1 second
Memory limit 256 MiB

amirkhan123 likes large numbers, which are much larger than long long in C++. Help him write a program that compares such large numbers.

Input data

The standard input stream contains two lines, the number A is written in the first, and the number B is written in the second. All numbers contain no more than 10^5 digits.

Output data

If A is greater than B, print the string A > B. If A is less than B, print the string A < B. And in the case of their equality, output the line: A == B. Note that the comparison operations are separated by a single space.

Examples

Input example #1
121
112
Output example #1
121 > 112
Input example #2
5
5
Output example #2
5 == 5
Input example #3
5
50
Output example #3
5 < 50