以下のコードを実行したときの結果はどうなりますか? ```python numbers = [10, 20, 30] total = 0 for num in numbers: total = total + num print(total) ```