Skip to content
3 changes: 2 additions & 1 deletion leap-year.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
year=int(input("Enter year to be checked:"))
if(year%4==0 and year%100!=0 or year%400==0):

print("THIS IS JUST A LEAP YEAR!)
elif year%2==0:
print("Burası local murat branch'te yazıldı")
else:
print("The year isn't a leap year!)

Expand Down