Files

6 lines
110 B
Kotlin
Vendored

// MAIN_ARGS: [10,20]
fun main(args: Array<String>) {
println(maxOf(args[0].toInt(), args[1].toInt()))
}