#abc059b. [abc059_b]Comparison
[abc059_b]Comparison
Problem Statement
You are given two positive integers and . Compare the magnitudes of these numbers.
Constraints
- Neither nor begins with a
0
.
Input
Input is given from Standard Input in the following format:
Output
Print GREATER
if , LESS
if and EQUAL
if .
Sample Input 1
36
24
Sample Output 1
GREATER
Since , 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