Skip to content
C

Check Odd or Even Using Bits

Easyjavapythonccppjavascript

Given an integer N, determine whether it is odd or even by inspecting its least significant bit.

Input Format

A single line containing the integer N.

Output Format

Print Odd if N is odd, otherwise print Even.

Input (stdin)

Output

Run your code to see output here...