标签:number clu 包含 title bsp namespace string meta users
数据包含多组输入,每行输入两个数字A,B
每一行数据输出 A + B
1 1
2 3
2
5
#include<iostream>
using namespace std;
int main()
{
int a,b;
while(cin>>a>>b)
{
cout<<a+b<<endl;
}
return 0;
}
标签:number clu 包含 title bsp namespace string meta users
原文地址:https://www.cnblogs.com/heroin1/p/12239884.html