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 }

 

posted @ 2018-02-10 15:40  Just_for_Myself  阅读(211)  评论(0编辑  收藏  举报