code:
def gcd(a,b): if a % b == 0: return b return gcd(b,a % b) a = int(input()) b = int(input()) print(gcd(a,b))
本地运行没有问题,但是lg上20re