以下のコードの実行結果はどうなりますか? ```python is_student = True has_discount = False result = is_student or has_discount print(result) ```