#1/usr/bin/python3

""" Show the computation of the greatest common divisor of a and b """
def gcd(a,b):
    print("gcd({},{})=".format(a,b), end='')
    r = a % b
    if r == 0:
        print(b)
    else:
        gcd(b, r)
