Problem1449--n个整数求和I

1449: n个整数求和I

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

n个整数求和

Input

输入包含多个测试用例,每个实例占一行,每行先是一个整数n,接着是n个整数。 n<=100

Output

对每个测试实例,在一行里输出n个整数的和。

Sample Input Copy

4 1 2 3 4
5 1 2 3 4 5

Sample Output Copy

10
15

Source/Category

admin