def gcd()

in gcd.py [0:0]


def gcd(a, b):
    while True:
        c = a % b
        if c == 0:
            return b
        a = b
        b = c