题解 | #a+b#
a+b
https://www.nowcoder.com/practice/dae9959d6df7466d9a1f6d70d6a11417
直接保存并提交
#include <iostream> using namespace std; int main() { int a, b; while (cin >> a >> b) { // 注意 while 处理多个 case cout << a + b << endl; } } // 64 位输出请用 printf("%lld")