萌新第一题,作为博客的测试
#include <bits/stdc++.h> using namespace std; int main() { int a, b; while(cin >> a >> b) cout << a + b << endl; }