题解 | 多组输入a+b II
多组输入a+b II
https://www.nowcoder.com/practice/37cad29015e3457ba256e3319436d0e6
#include <iostream>
using namespace std;
int main() {
int group_number;
cin >> group_number;
for(int i = 0; i < group_number; ++i){
int a, b;
cin >> a >> b;
cout << a + b << "\n";
}
}
// 64 位输出请用 printf("%lld")
