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

if x>10:

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

else:

    print("Your number is fine. Nothing to see here.")
