#abc059b. [abc059_b]Comparison

[abc059_b]Comparison

Problem Statement

You are given two positive integers AA and BB. Compare the magnitudes of these numbers.

Constraints

  • 1A,B101001 ≤ A, B ≤ 10^{100}
  • Neither AA nor BB begins with a 0.

Input

Input is given from Standard Input in the following format:

AA BB

Output

Print GREATER if A>BA>B, LESS if A<BA<B and EQUAL if A=BA=B.


Sample Input 1

36
24

Sample Output 1

GREATER

Since 36>2436>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