以下のコードの実行結果はどうなりますか? ```python for i in range(1, 6): if i == 3: break print(i) print("終了") ```