a+b_1
题目截图:
思路:
直接输出即可。
代码如下:
1 /* 2 a+b 3 */ 4 5 #include <stdio.h> 6 #include <string.h> 7 #include <math.h> 8 #include <stdlib.h> 9 #include <time.h> 10 #include <stdbool.h> 11 12 int main() { 13 int a, b; 14 while(scanf("%d %d", &a, &b) != EOF) { 15 // int 理论上会溢出 16 long long c = a+b; 17 printf("%lld\n", c); 18 } 19 20 return 0; 21 }