List of students

Report a typo

We have a list of students. Please get the last student's name according to the alphabetical order.

Sample Input 1:

peter anne kyle julie michael

Sample Output 1:

peter
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