Post

[백준/코틀린] 1008번: A/B

브론즈 5

링크

1008번: A/B

풀이

생략

코드

1
2
3
4
5
6
fun main() {
    val (a, b) = readln().split(" ").map { it.toDouble() }

    println(a / b)
}

This post is licensed under CC BY 4.0 by the author.