This example shows how Kotlin uses labeled break to exit an outer loop from inside an inner loop. The outer loop runs i from 1 to 3, and the inner loop runs j from 1 to 3. When both i and j equal 2, the condition triggers break@outer, which stops all looping immediately. The execution table tracks each step, showing variable values and actions. The variable tracker shows how i and j change over time. Key moments clarify why labeled break exits the outer loop, not just the inner one. The quiz tests understanding of variable values and loop control flow. The concept snapshot summarizes how labeled break and continue work in Kotlin for nested loops.