以下のコードの実行結果はどうなりますか? ```python for i in range(1, 6): if i % 2 == 0: continue print(i) ```