#K3756. Determine Even or Odd
Determine Even or Odd
Determine Even or Odd
Given an integer \( M \), determine if it is even or odd. Your task is to write a program that reads an integer from standard input. The program should output Even if the integer \( M \) is divisible by 2, otherwise it should output Odd.
Examples:
- If the input is
7
, the output should beOdd
. - If the input is
12
, the output should beEven
. - If the input is
0
, the output should beEven
.
inputFormat
Input is provided via standard input and consists of a single integer ( M ).
outputFormat
Output a single string: "Even" if the integer is even, and "Odd" if it is odd. The output should be written to standard output.## sample
8
Even