Answered step by step
Verified Expert Solution
Question
1 Approved Answer
import random def gcd(a,b): if a
import random
def gcd(a,b): if a while (a % b != 0): a,b =b,a%b return b if __name__=="__main__": for i in range(100): r1,r2=random.randint(1,9999999),random.randint(1,9999999) print("a={} and b={} and gcd={}".format(r1,r2,gcd(r1,r2))) Explain every step of this code
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started