题解 | #简单运算#
简单运算
https://www.nowcoder.com/practice/23c9b22d40fa4d7698a1306fb0c9f975
#include <iostream>
using namespace std;
int main() {
// write your code here......
int a;
int b;
cin>>a>>b;
if(a>b){
cout<<a+b<<" "<<a-b<<" "<<a*b<<" "<<a/b<<" "<<a%b;
}
else {
cout<<a+b<<" "<<b-a<<" "<<a*b<<" "<<b/a<<" "<<b%a;
}
return 0;
}

