杭电 hdu 1090

A+B for Input-Output Practice (II):

#include<iostream>
using namespace std;
int main(){
    int n;
    cin>>n;
    while(n--){
        int a,b;
        cin>>a>>b;
        cout<<a+b<<endl;
    }
    return 0;
}


你可能感兴趣的:(ACM,HDU,杭电,1090)