[백준/코틀린] 1008번: A/B브론즈 5 Posted 2025-09-11 By Jaeguk Cho views 1 min read링크1008번: A/B풀이생략코드 1 2 3 4 5 6 fun main() { val (a, b) = readln().split(" ").map { it.toDouble() } println(a / b) } 백준, CLASS 1 Kotlin This post is licensed under CC BY 4.0 by the author. Share