#include<stdio.h>
int main(){
int num,temp,factor=1;
printf("Buhel too oruulna uu: ");
scanf("%d",&num);
temp=num;
while(temp){
temp=temp/10;
factor = factor*10;
}
printf("Tsifruud : ");
while(factor>1){
factor = factor/10;
printf("%d ",num/factor);
num = num % factor;
}
return 0;
}