// outer for loop for i in 1...3 { // inner for loop for j in 1...3 { if i == 2 { break } print("i = (i), j = (j)") } }