题目描述

Write a program that inputs a series of integers and passes them one at a time to function isEven, which uses the modulus operator to determine whether an integer is even. The function should take an integer argument and return true if the integer is even and false otherwise.


输入格式

End at -1.


输出格式


样例数据

输入

3
3
8
6
-1

输出

3 is an odd integer
3 is an odd integer
8 is an even integer
6 is an even integer

备注


操作

评测记录

优秀代码

信息

时间限制: 1s
内存限制: 128MB
评测模式: Normal

题解