#include<iostream>
using namespace std;
int main()
{
setlocale(LC_ALL, "Russian");
int a, b;
cin >> a >> b;
cout << "Сумма: " << a+b << endl << "Произведение: " << a*b << endl;
return 0;
}
#include<iostream>
using namespace std;
int main()
{
setlocale(LC_ALL, "Russian");
int a, b;
cin >> a >> b;
cout << "Сумма: " << a+b << endl << "Произведение: " << a*b << endl;
return 0;
}