HDU1090
http://acm.hdu.edu.cn/showproblem.php?pid=1090
c++代码:
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
int T,a,b;
cin>>T;
while(T--){
cin>>a>>b;
cout<<a+b<<endl;
}
return 0;
}