#SDNU1644. Euler YYDS!

Euler YYDS!

Description

LRA is a admirer of Euler.

One day, LRA learns Euler functions φ(n)\varphi (n) .

LRA is so smart that he comes up with a simple question: What is the parity of φ(n)\varphi (n)?

Tips: is the number of the positive number x(1xn)x (1 \le x \le n) and gcd(x,n)=1gcd(x,n)=1.

Format

Input

The first line is an integer T(1T10)T(1\le T\le 10).

Followed by TT lines. Each line has an integer n(1n10100)n(1\le n\le 10^{100}).

The input guarantees that nn contains no leading zeros.

Output

For each nn, you need to ouput odd if φ(n)\varphi (n) is an odd, else output even.

Samples

2
1
3
odd
even

Hints

LRA can't solve it? It can't be true? It can't be true?

For example,φ(10)=4\varphi (10)=4 , because gcd(1,10)=1,gcd(3,10)=1,gcd(7,10)=1,gcd(9,10)=1gcd(1,10)=1, gcd(3,10)=1, gcd(7,10)=1,gcd(9,10)=1.