以下のコードで、繰り返し処理の外で実行される部分はどれですか? ```python print("開始") for i in range(2): print(f"繰り返し {i}") print("処理中") print("終了") ```