fun main(args: Array) { println(max(parseInt(args[0]), parseInt(args[1]))) } fun max(a: Int, b: Int) = if (a > b) a else b