num = int(input("Enter a number: ")) check = 100 - num if check < 11 and check > -11 : print(num, "is close to 100") else: print(num, "is not close to 100")