Open
Description
Write an application that inputs one number from the user, separates the number into its individual digits and prints the digits separated from one another by three spaces each. For example, if the user types in the number 42339, the program should print
4 2 3 3 9
Hint You’ll need to use both division and remainder operations to “pick off” each digit.