Skąd możesz wiedzieć, czy rok to rok skokowy

leapYear = int(input("Input a Year "))

if leapYear %4 == 0:
    print("Its a leap year")
else:
    print ("Its a normal year")
Curious Chipmunk