a = int(input("Enter a number: ")) b = a * 5 c = b % 2 if (c != 0): print("Not divisible by 5") else: print("Divisible by 5")