fun main(args: Array) { val n = readLine()!!.split(" ").map(String::toInt).sum() val s = readLine() println("$n $s") }