输入一个整数,判断是否偶数
7
7不是偶数
8
8是偶数
a = int(input()) if (a % 2 == 0): print('%d是偶数'%a) else: print('%d不是偶数'%a)