#include<iostream>
using namespace std;
int main()
{
int a,b,sum;
while(cin>>a>>b)
sum=a+b;
cout<<sum<<endl;}
return 0;
为什么会出错?
請在最後多加一個}就OK