#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include using namespace std; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int n,m; cin>>n>>m; vector A; while(1){ A.push_back(n/m); n-=n/m*m; if(n==0) break; swap(n,m); } rep(i,(int)A.size()){ if(i) cout<<" "; cout<