以下のコードの実行結果として正しいものはどれですか? ```python total = 0 for i in range(1, 5): total = total + i print(total) ```