#include<bits/stdc++.h>
using namespace std;
int main(){
int a[100][2],b[100]={0};
int t,i,j;
cin>>t;
if(t>=0&&t<=100){
for(i=0;i<t;i++){
for(j=0;j<2;j++){
cin>>a[i][j];
b[i]+=a[i][j];
}
cout<<b[i]<<endl;
}
}
return 0;
}

京公网安备 11010502036488号