ECNU_OJ_1000

来源:互联网 发布:php支付宝当面付demo 编辑:程序博客网 时间:2024/06/07 16:37

A + B Problem

Time Limit:1000MS Memory Limit:65536KB
Total Submit:7609 Accepted:2734


Description

Calculate A + B.

Input

Two integer a,b (0<=a,b<=10).Process to end of file.

Output

For each case, output A + B in one line.

Sample Input

1 1

Sample Output

2

Source

代码块

#include <stdio.h>int main(int argc, char **argv){    int a = 0;    int b = 0;    while(scanf("%d %d",&a,&b)!= EOF)        printf("%d\n",a+b);    return 0;}
0 0
原创粉丝点击