m,n = input().split() m = int(m) n = int(n) while n!=0 : r = m%n m = n n = r print(m)
暂无评论,快来抢首评~
相关推荐