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