
Score : 200 points
Problem StatementYou 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.
InputInput is given from Standard Input in the following format:
A
B
OutputPrint GREATER if A>B, LESS if A<B and EQUAL if A=B.
Sample Input 136
24
Sample Output 1GREATER
Since 36>24, print GREATER.
Sample Input 2850
3777
Sample Output 2LESS
Sample Input 39720246
22516266
Sample Output 3LESS
Sample Input 4123456789012345678901234567890
234567890123456789012345678901
Sample Output 4LESS
