Even or Odd

Easy

📝 Description

Write a program to check if a given number is even or odd.

Input Format

A single integer

Output Format

"even" if the number is even, "odd" otherwise

Constraints

-1000 ≤ n ≤ 1000

🔍 Sample Input

7
            

✅ Sample Output

odd
            

Code Editor

Please login to run and submit code.

Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run