杭电 hdu 1089

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

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


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