시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 256 MB15001236118782.603%

문제

Some numbers are just, well, odd. For example, the number 3 is odd, because it is not a multiple of two. Numbers that are a multiple of two are not odd, they are even. More precisely, if a number n can be expressed as n = 2 ∗ k for some integer k, then n is even. For example, 6 = 2 ∗ 3 is even.

Some people get confused about whether numbers are odd or even. To see a common example, do an internet search for the query “is zero even or odd?” (Don’t search for this now! You have a problem to solve!)

Write a program to help these confused people.

입력

Input begins with an integer 1 ≤ n ≤ 20 on a line by itself, indicating the number of test cases that follow. Each of the following n lines contain a test case consisting of a single integer −10 ≤ x ≤ 10.

출력

For each x, print either ‘x is odd’ or ‘x is even’ depending on whether x is odd or even.

예제 입력 1

3
10
9
-5

예제 출력 1

10 is even
9 is odd
-5 is odd

출처

ICPC > Regionals > North America > North America Qualification Contest > ACM-ICPC North America Qualifier 2013 A번

  • 문제를 만든 사람: Greg Hamerly