Python
a = int(input()) b = a % 2 if b == 0: print("偶数") else: print("奇数")