Write a program that prompts the user for an interger value in the range 0 to 32,767 and then prints the infividual digits of the numbers on a line with three spaces between digits. The first line is to start with the leftmost digit and print all five digits; the second line is to start with the second digit from the left and print four digits, and so forth. For example, it the user enters 1234, your program should print 0 0 1 2 3 4
1 2 3 4
2 3 4
3 4
4