以下のコードを実行したときの挙動として正しいのはどれですか? ```python num = 0 while num < 3: print(f"現在の値: {num}") num = num + 1 print("ループ終了") ```