Run ID:150526

提交时间:2026-03-28 15:30:46

y=int(input()) if y%100!=0 and y%4==0 or y%400==0: print("leap year") else: print("not leap year")