Run ID:92285

提交时间:2024-09-28 19:49:17

c=input().split() a=c[0] b=c[1] x=c[2] d=c[3] n=c[4] b=float(b) a=float(a) x=float(x) d=float(d) n=float(n) w=a*(x*x*x)+b*(x*x)+n*x+b w="{:.5f}".format(w) print(w)