N=int(input()) if N%400==0: ans=True elif N%100==0: ans=False elif N%4==0: ans=True else: ans=False print("Yes" if ans else "No")