Run ID:86662

提交时间:2024-07-27 09:52:01

def gcd(m, n): while n: m, n = n, m % n return m m, n = map(int, input().split()) print(gcd(m, n))