Answer:
I assume you want it written with correct python syntax.
def main():
print("there is a special discount on video games")
age = input(int("How old are you?")
if age >= 13:
print("are you on the honor-roll?")
else:
print("sorry only those above 13 qualify")
grades = input("What grade did you get?")
if grades > "C":
print("well done you qualify!")
else:
print("sorry you have to be an honor-roll student to qualify")
main()
You need the correct indentations
Step-by-step explanation: