Need some help with my math python project. I don't know why it keeps saying the wrong answers can someone please help me
import random
import time
while True:
a = random.randint(1,8)
b = random.randint(1,8)
answer = (int(a) * int(b))
print(str(a) + "x" + str(b))
guess = input("what is " + str(a) + "x" + str(b) + ": ")
if guess == answer:
print("well done")
time.sleep(2)
continue
else:
print("wrong answer")
break