#P2955. Parity Determination

    ID: 16213 Type: Default 1000ms 256MiB

Parity Determination

Parity Determination

Bessie's cruel second grade teacher has assigned a list of N positive integers for which Bessie must determine their parity. For each integer, if it is even, output "even" on a single line; if it is odd, output "odd" on a single line.

Note that each integer can be very large, up to \(10^{60}\), so you should not assume the number will fit in a typical 32-bit or 64-bit integer type.

inputFormat

The first line of input contains a single integer N (1 \(<= N <=\) 100) -- the number of integers to follow. Each of the next N lines contains one positive integer I (1 \(<= I <=\) \(10^{60}\)).

outputFormat

For each integer, print a single line containing either "even" if the integer is even or "odd" if the integer is odd.

sample

1
1
odd

</p>