year = int(input("Enter a year: ")) if year % 4 == 0 and not year % 100 == 0 or year % 400 == 0: print("The", year, "is a leap year") else: print("The year", year, "is not a leap year")