#Z13103. 奇偶数判断
奇偶数判断
Description
Given an integer, determine whether it is odd or even. If n is odd, output "odd"; if n is even, output "even".
Input Format
The input consists of a single line containing a positive integer n greater than zero.
Output Format
The output consists of a single line. If n is odd, output "odd"; if n is even, output "even".
5
odd