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 PROCtime_delay 60 INPUT "What is the second number",second% 70 PROCtime_delay 80 PRINT "The sum of the numbers is ";first%+second% 90 PROCtime_delay 100 END 110 : 120 DEFPROCtime_delay 130 T=TIME 140 PRINT '"I will now wait 3 seconds"' 150 REPEAT UNTIL TIME-T>300 160 ENDPROC