T = int(input()) for i in range(T): x = int(input()) if x % 2 == 0: print('YES') else: print('NO')
相关推荐