题解 | #a+b#
a+b
https://www.nowcoder.com/practice/dae9959d6df7466d9a1f6d70d6a11417
#include <stdio.h>
int main() {
int a, b;
while (scanf("%d %d", &a, &b) != EOF) { // 注意 while 处理多个 case
// 64 位输出请用 printf("%lld") to
printf("%d\n", a + b);
}
return 0;
}
