Sum All

Sum All

The mission is in Blocked Mode. Access to the solutions is blocked for a day or two (even after you share your own), until we'll have enough solutions for you to check. All users who've solved the mission will get the notifications about their opening.

Sum all values!!

Input: a list of int values

Output: Int.

Example:

assert sum_all([1]) == 1
assert sum_all([1, 2, 3]) == 6
assert sum_all([]) == 0
assert sum_all([1, 2, -3]) == 0
40