Respuesta :
Answer:
first part:
from math import gcd
from random import randrange
second part:
numA=randrange(6,50,2)
numB = randrange(6,30,2)
third part:
answer = gcd(numA,numB)
guess = input("Greatest common divisor of " + str(numA) + " and " + str(numB) + "? " )
fourth part:
if guess == answer:
print("Good job! You are right.")
print("The right answer is",answer)
Explanation:
got it right on edge
Answer:
first part:
from math import gcd
from random import randrange
second part:
numA=randrange(6,50,2)
numB = randrange(6,30,2)
third part:
answer = gcd(numA,numB)
guess = input("Greatest common divisor of " + str(numA) + " and " + str(numB) + "? " )
fourth part:
if guess == answer:
print("Good job! You are right.")
print("The right answer is",answer)
Explanation:
yes