1.2
#include <iostream>
#include <math.h>
using namespace std;
int X;
double Y;
int main() {
cout << "Введите Х"<<endl;
cin >> X;
Y = X- ((((X)^3)/3)+(((X)^5)/5));
cout << Y;
return 0;
}INFO
#include <iostream>
#include <math.h>
using namespace std;
int X;
double Y;
int main() {
cout << "Введите Х"<<endl;
cin >> X;
Y = X- ((((X)^3)/3)+(((X)^5)/5));
cout << Y;
return 0;
}