#include <iostream>
#include<conio.h>
using namespace std;
int main() {
int a,b; //Создаем переменные a и b
cin >> a; // Вводим значение a
cin >> b; // Вводим значение b
//Получаем сумму, разность, произведение.
cout << "Сумма: " << a + b << endl;
cout << "Разность: " << a - b << endl;
cout << "Произведение: " << a * b << endl;
_getch();
return 0;
}
#include <iostream>
#include<conio.h>
using namespace std;
int main() {
int a,b; //Создаем переменные a и b
cin >> a; // Вводим значение a
cin >> b; // Вводим значение b
//Получаем сумму, разность, произведение.
cout << "Сумма: " << a + b << endl;
cout << "Разность: " << a - b << endl;
cout << "Произведение: " << a * b << endl;
_getch();
return 0;
}