Find Even-odd Number

easy
1. You've to check whether a given number is even or odd.
2. Take a number "t" as input representing count of input numbers to be tested.
3. Take a number "n" as input "t" number of times.
4. For each input value of n, print "even" if the number is even and "odd" if the number is odd.

Input Format

A number t A number n A number n .. t number of times

Output Format

odd even odd .. t number of times

Constraints

1<=t<=100
2<=n<10^8

Notice

Try First, Check Solution later

1. You should first read the question and watch the question video.
2. Think of a solution approach, then try and submit the question on editor tab.
3. We strongly advise you to watch the solution video for prescribed approach.

Example

Input
3
10
20
15
Output
odd
odd
even
even
odd
Previous
Remove Duplicates With K
Next
Find If Number Is Even Or Odd

Related Questions