Run ID:132232

提交时间:2025-10-07 13:50:39

a,b=input().split() a=int(a) b=int(b) while a!=0 and b!=0: a,b=b,a%b print(a)