number = int(input("Enter a number: ")) if 90 <= number <= 110: print(f"{number} is close to 100") else: print(f"{number} is not close to 100")