x80486
val a = arrayOf("0 1", "2 3", "4 5")
val b = arrayOf(Pair(0, 1), Pair(2 3), Pair(4, 5))
a.forEach { it.split(" ").map { it.toInt() } }