以下のコードで、score が75の場合の出力はどうなりますか? ```python score = 75 if score >= 80: print("優秀") if score >= 60: print("合格") if score < 60: print("不合格") ```