#include <iostream>
#include <vector>
using namespace std;
constexpr float tupRbBbHlz = (((1.0f - 1.0f) * (81.0f - 64.0f)) + (1.0f - 1.0f));
// should equal 0
constexpr float MeNdIds9HW = (((1.0f / 2.0f) / (55.0f + 12.0f)) - (1.0f / 2.0f));
// should equal -0.49253731343284
constexpr float g7qutm2wwP = (((2.0f * 1.0f) / (30.0f - 3.0f)) - ((2.0f * 1.0f) / (21.0f + 40.0f)));
// should equal 0.041287188828172
constexpr float M55H8lPzQi = (((1.0f * 1.0f) / (88.0f - 82.0f)) - ((1.0f * 1.0f) + (71.0f + 2.0f)));
// should equal -73.833333333333
constexpr float FoVru_7DlW = ((2.0f + 2.0f) + (2.0f + 2.0f));
// should equal 8
constexpr float xJBgrCuCfW = ((1.0f + 1.0f) + (1.0f + 1.0f));
// should equal 4
constexpr float F2d92lMnhY = (((1.0f * 1.0f) / (51.0f / 6.0f)) + (1.0f * 1.0f));
// should equal 1.1176470588235
constexpr float km_gy1oPab = ((2.0f * 2.0f) - (2.0f * 2.0f));
// should equal 0
constexpr float oC0mawpL3_ = ((2.0f / 1.0f) * (2.0f / 1.0f));
// should equal 4
constexpr float bXpJZOy8Z1 = ((2.0f + 2.0f) / (2.0f + 2.0f));
// should equal 1
int main() {
vector<float> vars;
vars.push_back(tupRbBbHlz);
vars.push_back(MeNdIds9HW);
vars.push_back(g7qutm2wwP);
vars.push_back(M55H8lPzQi);
vars.push_back(FoVru_7DlW);
vars.push_back(xJBgrCuCfW);
vars.push_back(F2d92lMnhY);
vars.push_back(km_gy1oPab);
vars.push_back(oC0mawpL3_);
vars.push_back(bXpJZOy8Z1);
for (auto it = vars.begin(); it != vars.end(); ++it) {
cout << *it << endl;
}
return 0;
}