print ("\nScientific Calculator\nEg: pi * sin(90) - sqrt(81)")
k = input("\nWhat is ")
k = k.replace(" ","")
k = k.replace("^","**")
k = k.replace("=","")
k = k.replace("?","")
print ("\n" + str(calc(k)))