user_input = int(input("enter a number:")) difference = abs(user_input - 100) if difference <=10: print(f"{user_input} is close to 100") else: print(f"{user_input} is not close to 100")