Kotlin - Loops and Ranges
What will be the output of this Kotlin code?
outerLoop@ for (a in 1..2) {
innerLoop@ for (b in 1..3) {
if (b == 2) continue@outerLoop
print("$a$b ")
}
}