最大公約数

忘れるので。

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