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 = f"What is {num1} times {num2}? "
|
|
answer = int(input(question))
|
|
|
|
if answer == num1 * num2:
|
|
print("Yes, great work!")
|
|
else:
|
|
print(f"No, I'm afraid the correct answer it {num1 * num2}.")
|