Number as string
Easy
Execution time limit is 1 second
Runtime memory usage limit is 256 megabytes
amirkhan123 likes large numbers, which are much larger than long long in C++. Help him write a program that compares such large numbers.
Input
The standard input stream contains two lines, the number is written in the first, and the number is written in the second. All numbers contain no more than digits.
Output
If is greater than , print the string A > B
. If is less than , 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 #1
Answer #1
Input #2
Answer #2
Input #3
Answer #3
Submissions 1K
Acceptance rate 34%