以下のコードの実行結果はどうなりますか? ```python tasks = ["A", "B", "C"] completed = tasks.pop() print(completed) print(tasks) ```