B - Comparison
Editorial
/


Time Limit: 2 sec / Memory Limit: 256 MB
配点 : 200 点
問題文
2 つの正整数 A, B が与えられるので、その大小を比較してください。
制約
- 1≦A, B ≦ 10^{100}
- 入力の A, B の先頭は
0
でない。
入力
入力は以下の形式で標準入力から与えられる。
A B
出力
A>B のときGREATER
、A<B のときLESS
、A=B のときEQUAL
と出力せよ。
入力例 1
36 24
出力例 1
GREATER
36>24 なので、答えはGREATER
です。
入力例 2
850 3777
出力例 2
LESS
入力例 3
9720246 22516266
出力例 3
LESS
入力例 4
123456789012345678901234567890 234567890123456789012345678901
出力例 4
LESS
Score : 200 points
Problem Statement
You are given two positive integers A and B. Compare the magnitudes of these numbers.
Constraints
- 1 ≤ A, B ≤ 10^{100}
- Neither A nor B begins with a
0
.
Input
Input is given from Standard Input in the following format:
A B
Output
Print GREATER
if A>B, LESS
if A<B and EQUAL
if A=B.
Sample Input 1
36 24
Sample Output 1
GREATER
Since 36>24, print GREATER
.
Sample Input 2
850 3777
Sample Output 2
LESS
Sample Input 3
9720246 22516266
Sample Output 3
LESS
Sample Input 4
123456789012345678901234567890 234567890123456789012345678901
Sample Output 4
LESS