include <stdio.h>

int main() {
int a,b;
while(scanf("%d %d",&a, &b) != EOF) {//注意while处理多个case
printf("%d\n",a+b);
}
return 0;
}