1000---A + B Problem

2018-06-18 04:18:08来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

http://acm.hdu.edu.cn/showproblem.php?pid=1000
 
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
 

 

Recommend
We have carefully selected several similar problems for you:  1089 1090 1091 1092 1093 
 
1 #include<stdio.h>
2 int main()
3 {
4 int a,b;
5 while(scanf("%d%d",&a,&b)!=EOF)
6 printf("%d\n",a+b);    
7 return 0;
8 }

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:redis 源码阅读 数值转字符 longlong2str

下一篇:linuxC动态内存泄漏追踪方法