Answer:
The code solution is written in Python.
- import random
- num1 = random.randint(1,10)
- num2 = random.randint(1,10)
-
- print(num1 * num2)
Step-by-step explanation:
Firstly, we need two random integers from 1 to 10.
To generate the two random numbers from 1 to 10 we can use Python randint() method. We can import the random module (Line 1).
Next, we use dot notation to call the randint() method and pass two values, 1 and 10, as input arguments (Line 2-3). The two input arguments will ensure the randint() will only generate integer between 1 to 10 inclusive. The two random generated integers are stored in variable num1 and num2, respectively
At last, we multiply num1 and num2 and print the result to terminal (Line 5).