fun main() { var bottles = 99; while(bottles > 0) { System.out?.println("bottles of beer on the wall"); bottles--; } }