You are given a number N and you have to tell whether this number is even or odd.
INPUT:
First line will contain the number of test cases T which will be followed by T lines. Each line will consist a number N.
OUTPUT:
For each N print EVEN if N is even else print ODD.
CONSTRAINTS:
1 <= T <= 10 0 <= N <= 10^9
EXAMPLE:
INPUT
3
10
5
4
OUTPUT
EVEN
ODD
EVEN