#include
#include
using namespace std;
double max(double x, double y) {
if (x>y) return x;
else return y;
}
int main()
{
double a, b, c, z;
cout << "Введите a:", cin >> a, cout << "\n";<br> cout << "Введите b:", cin >> b, cout << "\n";<br> cout << "Введите c:", cin >> c, cout << "\n";<br> z = b/c*pow(max(a*a*a,b),5)+c*c*sqrt(max(a+c,b));
cout << z;<br> return 0;
}