现在的位置: 首页 > 综合 > 正文

A+B again——累加

2014年09月29日 综合 ⁄ 共 425字 ⁄ 字号 评论关闭

Description

Your task is to calculate the sum of some integers.

Input

Input contains multiple test cases, and one case one line. 
Each case starts with an integer N( 0 < N<=500 ), 
and then N integers follow in the same line.

Output

For each test case you should output the sum of N integers in one line, 
and with one line of output for each line in input.

Sample Input

4 1 2 3 4
5 1 2 3 4 5

Sample Output

10
15

代码

#include
<stdio.h>
intmain()
{
    inta,b;
    scanf("%d
%d"
,&a,&b);
    printf("%d",a+b);
    return0;
}

抱歉!评论已关闭.