백준 - 18108 1998년생인 내가 태국에서는 2541년생?!
문제
18108 1998년생인 내가 태국에서는 2541년생?!
답
kotlin code
1
2
3
4
5
6
7
8
9
import java.util.*
fun main(args: Array<String>) = with(Scanner(System.`in`)) {
q18108(nextInt())
}
fun q18108(request: Int): Unit {
return println(request - 543)
}
This post is licensed under CC BY 4.0 by the author.