Untitled

 avatar
unknown
plain_text
2 years ago
324 B
5
Indexable

#include <iostream>
using namespace std; 

int main()
{
	setlocale(LC_ALL, "Rus");
	int a, b;
	cin >> a >> b;
	cout <<"Сложение:"<< a + b << endl;
	cout <<"Деление:"<< a / 2 << endl;
	cout << "Умножение:"<<a * b << endl;
	cout << "И еще раз деление:"<<b / a << endl;

}
Editor is loading...