#ABC272A. [ABC272A] Integer Sum

[ABC272A] Integer Sum

Score : 100100 points

Problem Statement

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

Find the sum of the NN integers.

Constraints

  • 1N1001 \le N \le 100
  • 1Ai1001 \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 ANA_N

Output

Print the answer.

3
2 7 2
11

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

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

1
3
3