#include<iostream> using namespace std; int main() { double x,a,b,c,d; cin>>x>>a>>b>>c>>d; printf("%.7f",x*x*x*a+x*x*b+x*c+d); return 0; }