fun main(args: Array) { val sum = readLine()!!.split(" ").map(String::toInt).sum() val str = readLine() println(Integer.toString(sum) + " " + str) }