백준 - 10757 큰 수 A+B
문제
10757 큰 수 A+B
답
kotlin code
1
2
3
4
5
6
7
fun main() {
q10757()
}
fun q10757() {
println(readln().split(" ").map {java.math.BigInteger(it) }.sumOf { it })
}
This post is licensed under CC BY 4.0 by the author.
1
2
3
4
5
6
7
fun main() {
q10757()
}
fun q10757() {
println(readln().split(" ").map {java.math.BigInteger(it) }.sumOf { it })
}