Question: 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
Get step-by-step solutions from verified subject matter experts
