#include <iostream>
#include <cstring>
using namespace std;
void cal(int x,int y){
cout<<x + y<<endl;
cout<<x - y<<endl;
cout<<x * y<<endl;
cout<<x / y<<endl;
}
int main(){
int a,b;
cin>>a>>b;
cal(a,b);
return 0;
}

被折叠的 条评论
为什么被折叠?



