e = int(input("ENTER A YEAR ")) if (e % 4)==0 and (e % 400)==0: print(e, "is a leap year") else: print(e, "is not a leap year")