13 lines
192 B
C++
13 lines
192 B
C++
|
#include<iostream>
|
||
|
using namespace std;
|
||
|
int main() {
|
||
|
int x,y;
|
||
|
cin>>x;
|
||
|
cin>>y;
|
||
|
cout<<"x+y="<<x+y<<endl;
|
||
|
cout<<"x-y="<<x-y<<endl;
|
||
|
cout<<"x*y="<<x*y<<endl;
|
||
|
cout<<"x/y="<<x/y;
|
||
|
return 0;
|
||
|
}
|