by CodeChum Admin
Well, that's odd, or is it? It's your job to find out!
Instructions:
Instructions
Input
A line containing an integer
5
Output
The first line contains the inputted integer.
The second line contains a string which is the result.
5
Odd
n = int(input())
if n%2 == 0:
print("even")
else:
print("odd")
Comments
Leave a comment