Capitalize the words

Report a typo

You have a list of words, please capitalize them.

Sample Input 1:

anne michael caroline dimitry emilio

Sample Output 1:

[Anne, Michael, Caroline, Dimitry, Emilio]
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