def gcd_another()

in gcd.py [0:0]


def gcd_another(a, b):
    c = a % b
    while c != 0:
        a = b
        b = c
        c = a % b
    return b