Problem Description
Calculate A + B.
Input
Each line will contain two integers A and B. Process to end of file.
Output
For each case, output A + B in one line.
Sample Input
1 1
Sample Output
2
Author
HDOJ
C++:
1 int main() { 2 3 int a, b; 4 5 while (cin >> a >> b) { 6 7 cout << a + b << endl; 8 9 } 10 11 return 0; 12 13 }
C语言:
1 #include <stdio.h> 2 int main(){ 3 int a, b; 4 while (scanf("%d %d", &a, &b) != EOF) 5 { 6 printf("%d\n", a + b); 7 } 8 return 0; 9 }
代码仅供参考,如果哪里有不足,欢迎各位指教,我一定会及时进行改进和优化。
如果要转载,请注明出处。
2015.2.6 黑骐
时间: 2024-10-13 20:29:20