import math x = float(input("Input x:")) if(x<1): print("x={:.2f},y={:.2f}".format(x,x)) elif(1<=x<10): print("x={:.2f},y={:.2f}".format(x,2*x-1)) else: print("x={:.2f},y={:.2f}".format(x,3*math.sqrt(x)-11))