number = float(input("Enter a number: "))

if 90 <= number <= 100:
    print("is close to 100")
else:
    print("is not close to 100")