Объяснение:
#include "iostream"
#include "cmath"
using namespace std;
int main()
{
setlocale (LC_ALL, "Russian");
int a, b, c;
сout<<"Введите первое число"<<endl;
cin>>a;
cout<<endl<<"введите второе число"<<endl;
cin>>b;
c=a+b;
cout<<"сума равно "<<c;
system ("pause");
return 0;
}
Объяснение:
#include "iostream"
#include "cmath"
using namespace std;
int main()
{
setlocale (LC_ALL, "Russian");
int a, b, c;
сout<<"Введите первое число"<<endl;
cin>>a;
cout<<endl<<"введите второе число"<<endl;
cin>>b;
c=a+b;
cout<<"сума равно "<<c;
system ("pause");
return 0;
}