Ответ Автор - LegendaryGhost #include <iostream> #include <cmath>using std::cin; using std::cout; using std::endl; int main(){ int x; cout << "Entet X = "; cin >> x; cout << endl << "х^1 * х^2 + х^1 * х^3 + х^2 * х^2 = "; cout << pow(x, 3) + pow(x, 4) * 2; return 0; }