样例输入 1 5 10 20 样例输出 6 30
#include<iostream> using namespace std; int main() { int a,b; while(cin>>a>>b)cout<<(a+b)<<endl; return 0; }