[백준/코틀린] 2739번: 구구단브론즈 5 Posted 2025-09-15 By Jaeguk Cho views 1 min read링크2739번: 구구단풀이생략코드 1 2 3 4 5 6 7 8 fun main() { val n = readln().toInt() (1..9).forEach { println("$n * $it = ${n * it}") } } 백준, CLASS 1 Kotlin This post is licensed under CC BY 4.0 by the author. Share