Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

18 строки
301 B
C++

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#include <iostream>
using namespace std;
int main()
{
cout << "Enter A and B: ";
int a, b;
cin >> a >> b;
cout << "A + B = " << a + b << '\n'
<< "A - B = " << a - b << '\n';
<< 'ÏÅ×ÀÒÜ ÏÐÎÈÇÂÅÄÅÍÈß'
<< "A * B = " << a * b << '\n'
<< "Ïå÷àòü äåëåíèÿ"
<< "A / B = " << a / b << '\n';
}