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