int main()
{
//输入
int a,b;
while(scanf("%d%d",&a,&b)!=EOF);//让其在文件末结束
printf ("%d\n",a+b)//一定要打\n不然不符合题目
}
return 0;