10 REM > Delay 20 REM Inputs numbers with a delay between them 30 ON ERROR REPORT:PRINT " at line ";ERL:END 40 INPUT "What is the first number",first% 50 T=TIME 60 PRINT '"I will now wait 3 seconds"' 70 REPEAT UNTIL TIME-T>300 80 INPUT "What is the second number",second% 90 T=TIME 100 PRINT '"I will now wait 3 seconds"' 110 REPEAT UNTIL TIME-T>300 120 PRINT "The sum of the numbers is ";first%+second% 130 T=TIME 140 PRINT '"I will now wait 3 seconds"' 150 REPEAT UNTIL TIME-T>300