x = int(input("Enter a whole number no greater than ten: "))

if x > 10:

    print("Your number is greater than ten.")

elif x>9:

    print("Your number is OK, but you’re cutting it close.")

else:

    print("Your number is fine. Move along.")
