以下のコードを実行したときの出力結果はどうなりますか? ```python num = 10 while num > 15: print(num) num = num - 1 print("終了") ```