0
#include <iostream>
using namespace std;
void main()
{ setlocale (LC_ALL, "Russian");
int a;
int b;
char c;
cout<<"Введите число один"<<endl;;
cin>>a;
cout<<"Введите знак"<<endl;;
cin>>c;
cout<<"Введите число два"<<endl;
cin>>b;
if (c=='+')
{
cout<<a<<"+"<<b<<"="<<a+b<<endl;
}
if (c=='-')
{
cout<<a<<"-"<<b<<"="<<a-b<<endl;
}
if (c=='*')
{
cout<<a<<"*"<<b<<"="<<a*b<<endl;
}
if (c=='/')
{
cout<<a<<"/"<<b<<"="<<a/b<<endl;
}
}