백준 - 10951 A+B - 4
문제
10951 A+B - 4
답
kotlin code
1
2
3
4
5
6
7
8
9
10
11
import java.util.*
fun main(args: Array<String>) {
q10951();
}
fun q10951() = with(Scanner(System.`in`)) {
while (hasNextInt()) {
println(nextInt() + nextInt())
}
}
This post is licensed under CC BY 4.0 by the author.