以下のコードの実行結果はどうなりますか? ```python for i in range(1, 4): for j in range(1, 4): if j == 2: break print(f"{i}-{j}") ```