#include <iostream> #include <math.h> using namespace std; int main() { float a,b,c; cin>>a>>b; c=sqrt(a*b)+log(a+b)+exp(b); cout<<c; return 0; }
如有用请采纳