HDOJ(1000) A + B Problem

代码如下:

 1 #include <stdio.h>
 2 
 3 int main(void)
 4 {
 5     int a, b;
 6     while (scanf("%d %d", &a, &b) == 2){
 7         printf("%d
", a+b);
 8     }
 9 
10     return 0;
11 }
原文地址:https://www.cnblogs.com/xiaomanon/p/4459002.html