num = int(input("Enter a number: ")) if (((num-100)**2)**0.5)<11: print(num, "is close to 100") else: print(num, "is not close to 100")