Run ID:116761
提交时间:2025-04-12 13:54:09
m, n = map(int, input().split()) while n != 0: m, n = n, m % n print(m)