입력 #1 100
출력 #1 100 is even
입력 #2 1
출력 #2 1 is odd
a = int(input()) if (a%2==0): print(f'{a} is even') else: print(f'{a} is odd')