#abc272a. [abc272_a]Integer Sum

[abc272_a]Integer Sum

Problem Statement

You are given NN integers A1,A2,dotsA_1,A_2,\\dots, and ANA_N.

Find the sum of the NN integers.

Constraints

  • 1leNle1001 \\le N \\le 100
  • 1leAile1001 \\le A_i \\le 100
  • All values in the input are integers.

Input

The input is given from Standard Input in the following format:

NN A1A_1 A2A_2 dots\\dots ANA_N

Output

Print the answer.


Sample Input 1

3
2 7 2

Sample Output 1

11

You are given three integers: 22, 77, and 22.

The answer is 2+7+2=112 + 7 + 2 = 11.


Sample Input 2

1
3

Sample Output 2

3