Given a number, find out if it is odd or even.
There are multiple tests in this.
First line indicating the number of test cases T.
Next T lines containing a number each ni where i denotes the ith input.
T lines each indicating the answer for the ith input.
Each line says "ODD" if the number is odd and "EVEN" if the number is even.
4
23
12
44
32
ODD
EVEN
EVEN
EVEN
0 < T <= 10000
0 <= ni <= 10000