#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; while(a) { cout<<a%10; if(a/10) cout<<" "; a/=10; } return 0; }