Oddities

No attempts yetTime limit2sMemory limit256 MB

Problem

Some numbers are odd. The number 3 is odd because it is not a multiple of two. A number that is a multiple of two is not odd, it is even. More precisely, if n=2kn = 2k for some integer kk, then nn is even. For example, 6=2×36 = 2 \times 3 is even. The integer kk is allowed to be negative, so the same definition covers negative numbers.

Plenty of people get confused about whether zero is odd or even. Write a program that helps them.

Input

The first line contains the number of test cases nn (1n201 \le n \le 20).

Each of the next nn lines contains one integer xx (10x10-10 \le x \le 10).

Output

For each xx, print x is odd if xx is odd and x is even if xx is even, one line per test case. In place of x, write the integer given in the input.