4 lines
105 B
Kotlin
4 lines
105 B
Kotlin
fun main() {
|
|
while ((0..19).random().also { println(it) } != 10)
|
|
println((0..19).random())
|
|
}
|