Sum of numbers

Report a typo

Complete the solution function. You need to calculate and return the sum of numbers in the list numbers.

Sample Input 1:

3 2 15

Sample Output 1:

20
Write a program in Kotlin
fun solution(numbers: List<Int>): Int {
// put your code here
}
___

Create a free account to access the full topic