Let N be a positive integer consisting of the digits dn…d1d0. Write a program that reads a value of N and then prints its digits in a column, starting with d0. Note: The number can and will be very very large.
3467
7 6 4 3
Hint: 123 is a positive number, and so is 00123.
Comments
Hint: 123 is a positive number, and so is 00123.