close = int(input("enter a number from 1 to 100: ")) if close in range(90,100) : print(close, "is close to 100") elif close in range(1,89) : print(close, "is not close to 100") elif close == 100 : print("that is literally 100")