Problem5590--n个数的和

5590: n个数的和

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

Description

求 $n$ 个数的和。

Input

两行:
第一行一个整数 $n\ (1 \leq n \leq 10^6)$
第二行 $n$ 个正整数,每个正整数之间用空格隔开。$a_i\ (1 \leq a_i \leq 10^6)$ 为第 $i$ 个数据。

Output

$n$ 个正整数的和。

Constraints


Sample 1 Input

3
2 3 5

Sample 1 Output

10

Sample 2 Input

10
9 6 3 2 5 8 7 4 1 10

Sample 2 Output

55

Source/Category