All Problems
easyConditions

Even or Odd

Problem Statement
Given an integer n, determine if it is even or odd. Print "Even" or "Odd".

SAMPLE INPUT

7

SAMPLE OUTPUT

Odd

CONSTRAINTS

  • -10000 <= n <= 10000

Explanation: Check if the number is divisible by 2 using modulo operator.

Code Editor
Output
Click "Run" to see output...