以下のコードを実行したときの結果はどうなりますか? ```python temperature = 25 if temperature > 30: print("暑いです") if temperature > 20: print("暖かいです") if temperature <= 20: print("涼しいです") print("気温チェック完了") ```