Run ID:128805

提交时间:2025-08-19 20:33:17

t = int(input()) if t % 4 == 0: if t % 100 == 0: if t % 400 == 0: print('是闰年') else: print('不是闰年') else: print('是闰年') else: print('不是闰年')