HDU 1000 A + B Problem

来源:互联网 发布:做头像的软件 编辑:程序博客网 时间:2024/05/02 02:11

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
 

Author
HDOJ
 


#include<iostream>using namespace std;int main(){    int a,b;    while(cin>>a>>b)    {     cout<<a+b<<endl;     }       return 0;           } 


结果:
Run IDSubmit TimeJudge StatusPro.IDExe.TimeExe.MemoryCode Len.LanguageAuthor74846192013-01-07 17:34:37Accepted10000MS384K164 BG++



同题:     
        HDU 1089 A+B for Input-Output Practice (I)  http://acm.hdu.edu.cn/showproblem.php?pid=1089
0 0
原创粉丝点击