#include <cmath>
#include <iostream>
using namespace std;
int main()
{
setlocale(LC_ALL,"Russian");
int x,b,c,y=0;
cout<<"Введите число x"<<endl;
cin>>x;
cout<<"Введите число b"<<endl;
cin>>b;
cout<<"Введите число c"<<endl;
cin>>c;
y=pow(x,2) + 4*b - c;
cout<<"y = "<<y;
return 0;
}
#include <cmath>
#include <iostream>
using namespace std;
int main()
{
setlocale(LC_ALL,"Russian");
int x,b,c,y=0;
cout<<"Введите число x"<<endl;
cin>>x;
cout<<"Введите число b"<<endl;
cin>>b;
cout<<"Введите число c"<<endl;
cin>>c;
y=pow(x,2) + 4*b - c;
cout<<"y = "<<y;
return 0;
}