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