#include <iostream>
#include <cmath>
using namespace std;
int main()
{
double x, y, a, b;
cin >> x >> y >> a >> b;
cout << "A = " << (pow((x * x + b*x - 3), 2) * pow((y - 2.3), 1.5)) / pow((5 - a * pow(x, 4)), 2);
}
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
double x, y, a, b;
cin >> x >> y >> a >> b;
cout << "A = " << (pow((x * x + b*x - 3), 2) * pow((y - 2.3), 1.5)) / pow((5 - a * pow(x, 4)), 2);
}