You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from random import randint
|
|
|
|
|
|
num1 = randint(1, 10)
|
|
num2 = randint(1, 10)
|
|
question = "What is " + str(num1) + " times " + str(num2) + "? "
|
|
answer = int(input(question))
|