takes 2 integers as parameters (must be in descending order) and compute the gcd of them both
def get_gcd(a,b): if int(a)%int(b)!=0 if a>b else get_gcd(b,a) : get_gcd(b,int(a)%int(b)) elif int(a)%int(b)==0 if b<a else print(): print(b, end='')#the empty print() statement is here to avoid printing a wrong result if a and b were not in descending order