Run ID:129387
提交时间:2025-08-24 21:10:48
t = int(input()) if t % 4 == 0: if t % 100 == 0: if t % 400 == 0: print('Yes') else: print('No') else: print('Yes') else: print('No')