elizarov
11/28/2017, 2:20 PMa, b = list(map(int, input().split()))
Read a line with two integers in Kotlin:
val (a, b) = readLine()!!.split(" ").map { it.toInt() }
Python version is definitely shorter, but with much, much higher number of WTF/minute when you are trying to understand what is going on and why you have to write it like that.