Summation

Report a typo

Create a function called sum5 that can sum from 2 to 5 numbers.

Sample Input 1:

8 11

Sample Output 1:

19
Write a program in Kotlin
fun sum5(a1: Int, a2: Int, a3: Int, a4: Int, a5: Int): Int {

}
___

Create a free account to access the full topic