解题思路:输入ab,输出a+b
注意事项:
参考代码:#include<iostream>
using namespace std;
int main(){
int a,b;
while(cin>>a>>b){
cout<<a+b<<endl;
}
return 0;
}
0.0分
0 人评分