AnswerBox
Python

Even or Odd

Description:
Check whether a given number is even or odd.
Python Code
num = 17
if num % 2 == 0:
    print(num, "is Even")
else:
    print(num, "is Odd")
Expected Output
17 is Odd