import sys

T=int(input())
while T>0:
    x=int(input())
    if x%2==0:
        print('YES')
    else:
        print("NO")
    T-=1