Run ID:94118

提交时间:2024-10-19 19:25:55

a = input() b = int(a) if b%4 == 0 and b%100 != 0 or b%400 == 0: print(b,"Yes") else: print(b,"No")