hdoj 第一题

拟墨画扇 提交于 2020-01-26 11:34:47

HD oj

A+B problem

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

Source Code

#include <stdio.h> 
int main()
{
   int a, b;
   while(scanf("%d%d", &a, &b) == 2)
   printf("%d\n", a + b);
   return 0;
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!