Respuesta :
The modifications to be done program is an illustration of random numbers using Python.
The random numbers from 1 to 10, will be generated using the random module
The modified program where comments are used to explain the lines of the programs are:
#This imports the random module
import random
#This generates a random number
a = random.randint(1,10)
#This generates another random number
b = random.randint(1,10)
#This multiplies both numbers
answer = a * b
#This displays the result of the program
print (str(a) + " * " + str(b) + " = " + str(answer))
At the end of the program, the program will print the product of both random numbers.
See attachment for sample run of the program
Read more about Python programs at:
https://brainly.com/question/22841107