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