以下のコードを実行したときの出力はどうなりますか? ```python score = 45 if score >= 60: print("合格") else: print("不合格") print("判定完了") ```