-
fun main(){ val input = readLine() val (number1, number2) = input?.split(" ")?.map { it.toInt() } ?: listOf(0, 0) println("${number1 + number2}") }