leap year
unknown
plain_text
3 years ago
212 B
6
Indexable
year=int(input("year ="))
if year % 4 == 0:
if year % 100 != 0:
print("The year is leap year")
else:
print("The year is not leap year")
else:
print("The year is not leap year")Editor is loading...