#include <stdio.h> void foo(int s) { if(s==0) return; foo(s/10); printf("%1d ",s%10); } int main(void) { int t; scanf("%d",&t); foo(t); return 0; }