Given a number, you have to determine if the number is greater than 7, equal to 7, or less than 7.
The first line indicating the number of test cases - T.
Next T lines will each contain a single number ni.
T lines, one for each test case.
"UP" - If the number given is greater than 7
"DOWN" - If the number given is smaller than 7
"EQUAL" - If the number given is equal to 7
3
12
7
45
UP
EQUAL
UP
0 < T < 100000
0 <= ni <= 100000