fun main(args: Array){ val (a,b)=readLine()!!.split(" ").map(String::toInt) val c = readLine() print(a+b) print(" ") println(c) }