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

京公网安备 11010502036488号