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