Run ID:116760

提交时间:2025-04-12 13:53:45

m=input() n=input() while n != 0: m, n = n, m % n print(m)