Skip to content
C

Problem 2: Even or Odd Checker Function

Easypython

Problem Description

Write a function check_even_odd(number) that returns the string "Even" if the number is even, and "Odd" if it is odd.

Input

A single integer.

Output

The string "Even" or "Odd".

Constraints

  • Input can be positive, negative, or zero.

Example Input

text
7

Example Output

text
Odd

Concepts Covered

Functions, return, modulus operator, conditionals.

Input (stdin)

Output

Run your code to see output here...