2186: 递归方法求和

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:6 Solved:6

Description

使用递归方法对数组求和。

Input

第1行:数组的长度n
第2行:输入n个整数。

Output

数组的和。

Sample Input Copy

5
3 1 2 2 1

Sample Output Copy

9