学长只能帮你到这儿了00-HDU1000

来源:互联网 发布:熟练应用办公软件 编辑:程序博客网 时间:2024/05/01 13:25

A + B Problem

Time Limit: 2000/1000 MS(Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 261486    Accepted Submission(s):76993

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

#include<stdio.h>
 
void main(void)
{
    int a,b;
    while(scanf("%d%d",&a,&b)!=EOF)
    {
        printf("%d\n",a+b);
    }
 
}

 

Hint:注意体会什么是EOF
原创粉丝点击