Answer:
The program is as follows:
5 INPUT A,B
6 PROD = A * B
7 PRINT PROD
8 TOTAL = A + B
9 PRINT TOTAL
10 DIFF = A - B
11 PRINT DIFF
12 END
Step-by-step explanation:
This gets input for the two numbers
5 INPUT A,B
This calculates the product
6 PROD = A * B
This prints the calculated product
7 PRINT PROD
This calculates the sum
8 TOTAL = A + B
This prints the calculated sum
9 PRINT TOTAL
This calculates the difference
10 DIFF = A - B
This prints the calculated difference
11 PRINT DIFF
This ends the program
12 END