用Python编写一个函数,计算两个数的最小公约,并返回这个怎么做呀!
def gcd(a, b): if b == 0: return a else: return gcd(b, a % b) a = 15 b = 25 print("最小公约数为:", gcd(a, b))