Kotlin - Loops and Ranges
How can you modify this Kotlin code to ensure the loop runs at least once and prints numbers 1 to 5?
var count = 1
while (count <= 5) {
println(count)
count++
}