CodeChef PESU ECC Chapter
← Arena·Practice·August 13, 2026

Even or Odd

Unrated
mathimplementation1s limit· 256 MB

Set by Vaibhav

PRACTICE

Even or Odd

Unrated1s limit256 MB

Read an integer n and determine whether it is even or odd. Print Even if n is divisible by 2; otherwise, print Odd.

Input Format

A single line containing one integer n.

Output Format

Print Even if n is even, otherwise print Odd.

Constraints

-10^9 <= n <= 10^9

Sample

Input
7
Output
Odd

Explanation

7 is not divisible by 2, so it is odd.

Code
00:00
Loading editor…
Auto-saved
Custom Inputusing sample

Run uses this input. Submit always judges the hidden tests.