题目描述

Write a program that reads an integer and determines and prints whether it’s odd or even. [Hint: Use the modulus operator. An even number is a multiple of two. Any multiple of two leaves a remainder of zero when divided by 2.]


输入格式

A lines that contains one integer.


输出格式

Prints whether the number is odd or even


样例数据

输入

6

输出

The integer 6 is even.

备注


操作

评测记录

优秀代码

信息

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

题解