[LeetCode] Two Sum 两数之和


#include <iostream>

using namespace std;

int main(void) {
int a, b;
while(cin >> a >> b) {
cout << a + b << endl;
}
return 0;
}

posted @ 2019-05-09 17:47  卓行天下  阅读(86)  评论(0)    收藏  举报