洛谷 P1001A+B Problem | kotlin 实现 /** * @题目名称 A+B Problem * @题目编号 P1001 * @题目链接 : https://www.luogu.com.cn/problem/P1001 * @作者 National Corporation * @邮箱 nationalcorporation@aliyun.com * @编写时间 2023/08/04 * */ fun main() { val (a, b) = readln().split(" ").map { it.toInt() } println(a + b) }