List of students

Report a typo

We have a list of students. Please get the number of characters of the student names in the odd positions.

Sample Input 1:

Alice Bob Carol Dave Eve

Sample Output 1:

13
Write a program in Kotlin
fun main() {
val list = readln().split(" ")
// write your code here
val res =


println(res)
}
___

Create a free account to access the full topic