In python:
import random
a = random.randint(1,10)
b = random.randint(1,10)
print(f"{a} * {b} = {a * b}")
I hope this helps!
Answer:
answer = a * b
print (str(a) + " * " + str(b) + " = " + str(answer))
Step-by-step explanation:
Create a code that outputs a random equation then solves it automatically ^
5.6m questions
7.3m answers