You are given integers, and you must print out the sum of the integers.
Input Specification
There will be one line of input.
The first number in the line will be the .
The next numbers will the integers you must add up, .
Output Specification
Print the sum of the integers on the first line.
Scoring
Let represent the number of characters in your solution.
If is less than characters, you will receive of the points.
Otherwise, your score is .
Sample Input
4 3 4 2 5
Sample Output
14
Comments