// OPTION: 1 fun foo(n: Int) { var m = n do { m-- println(m) } while (m > 0) }