🌈 搜索
📅  最后修改于: 2022-03-11 14:57:27.600000             🧑  作者: Mango
def gcd(a,b): print(a,b) if b == 0: return a return gcd(b, a%b)