A Very Big Sum

A Very Big Sum

Calculate and print the sum of the elements in an array, keeping in mind that some of those integers may be quite large.


Function Description

Complete the aVeryBigSum function in the editor below. It must return the sum of all array elements.

aVeryBigSum has the following parameter(s):

  • ar: an array of integers.

Input Format

The first line of the input consists of an integer n. The next line contains n space-separated integers contained in the array.


Output Format

Print the integer sum of the elements in the array.


Constraints


Sample Input

1
2
5
1000000001 1000000002 1000000003 1000000004 1000000005

Output

1
5000000015

Note:

The range of the 32-bit integer is . When we add several integer values, the resulting sum might exceed the above range. You might need to use long long int in C/C++ or long data type in Java to store such sums.



Solution

1
2
3
4
5
function aVeryBigSum(ar) {
return ar.reduce((target, number) => {
return target + number;
}, 0)
}

Comments

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×