Answer:
Step-by-step explanation:
This depends on the language. Most random number generators are from 0 to 1 so that when you go from 1 to 10 inclusive, your generator will look something like
x := int(rand(10) + 1;
y will look the same way
y := int(rand(10) + 1
Now you need to multiply them together.
Sum := x * y;
And now you need to give the results of what the computer has done.
My language uses labels so it would look like this.
label1.caption := inttostr(x) + ' times '+inttostr(y) + ' = ' + inttostr(sum);