Tables Challenge 2

Create a question to test the user with

Random number in num1 multiplied by random number in num2

The result is then put inside a variable called right answer

Copy the text in the left hand side and paste it underneath your code so far.

rightanswer=num1*num2

#Python uses an * to multiply

Add a temporary print command to test if your code is working

print(num1,"x",num2,"=",rightanswer)

Run the code to see if the sums make sense.

Delete the temporary print command before moving on to the next challenge.