Run ID:91676
提交时间:2024-09-22 11:53:34
s=input() s=int(s) if s%100==0: if s % 400 > 0: print("not leap year") elif s % 400 == 0: print("leap year") else: pass elif s%100>0: if s % 4 > 0: print("not leap year") elif s % 4 == 0: print("leap year")