using System;
public class Program
{
public static void Main()
{ int userNum = 45969;
int a = userNum % 10;
int b = (userNum % 100) - a ;
int c = userNum / 1000;
int d = userNum / 100000;
int e = userNum / 1000000;
int[] userNumArr = new int[5] { a, b, c, d, e };
Console.WriteLine("{0} {1} {2} {3} {4} {5}",a,b,c,d,e, userNum);
Console.ReadLine();
}