#include <bits/stdc++.h> using namespace std; int main() { int num1 = 0; int num2 = 0; while(cin>>num1>>num2){ cout<<num1 + num2<<endl; } return 0; }
何意为?