#include <iostream>
#include <cmath>
int main()
{
//setlocale(LC_ALL, "Russian");
float
a, b, c, d, e, f, g, h;
std::cin >> a >> b >> c >> d >> e >> f >> g >> h;
d = a + b;
e = c - 42;
f = d * (b + e);
g = (d * e) / (a + b + c);
h = sqrt(b - c);
std::cout << "d = " << d << std::endl
<< "e = " << e << std::endl
<< "f = " << f << std::endl
<< "g = " << g << std::endl
<< "h = " << h << std::endl;
system("PAUSE >> void");
return 0;
}
#include <iostream>
#include <cmath>
int main()
{
//setlocale(LC_ALL, "Russian");
float
a, b, c, d, e, f, g, h;
std::cin >> a >> b >> c >> d >> e >> f >> g >> h;
d = a + b;
e = c - 42;
f = d * (b + e);
g = (d * e) / (a + b + c);
h = sqrt(b - c);
std::cout << "d = " << d << std::endl
<< "e = " << e << std::endl
<< "f = " << f << std::endl
<< "g = " << g << std::endl
<< "h = " << h << std::endl;
system("PAUSE >> void");
return 0;
}