leapYear = int(input("Input a Year ")) if leapYear %4 == 0: print("Its a leap year") else: print ("Its a normal year")