#yuki1794 n,m=map(int,input().split()) l=[] while m!=0: l.append(n//m) n,m=m,n%m print(*l)