1 number = int(input("Enter an integer: ")) 2 3 if number % 5 == 0: 4 print("HiFive") 5 6 if number % 2 == 0: 7 print("HiEven")