#include #include int main() { float a,x,y; scanf("%f%f", &a, &x); y=pow(a, 5)+sin(a*x)+log(a+x)+pow(2.718, a*x); printf("%f", y); return 0; }