Run ID:106633

提交时间:2025-01-16 14:29:11

y=int(input()) if y%400==0 or y%4==0 and y%100!=0: print('Yes') else: print('No')