100591: [AtCoder]ABC059 B - Comparison

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

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

Input

题意翻译

### 题目描述 给定两个正整数 $a, b$,比较他们的大小。 ### 输入格式 输入有两行,第一行为数 $a$,第二行为数 $b$。 ### 输出格式 如果 $a > b$,输出 "GREATER";如果 $a = b$,输出 "EQUAL",如果 $a < b$,输出 "LESS"。 ### 数据范围 $1 \le a, b \le 10^{100}$,保证 $a, b$ 均无前导零。

加入题单

算法标签: