#include<iostream>
int main()
{
using namespace std;
int x;
int y;
while(cin>>x)
cin>>y;
cout<<x+y;
}
return 0;
已解決