Here are the first three statements from the program:
' Retail price calculator ' with markup entered by the user PRINT "Enter the amount of markup in percent" INPUT MARKUP LET RATE = 1 + MARKUP / 100
The first statement prompts the user. Say that the user types 10. That value will be stored in MARKUP. Then 1 + 10 / 100 is calculated, and the result 1.1 is put in RATE.
Here is what happens in detail:
After the first three statements have executed, what happens with the program? (Just say what happens in general; no details are needed.)