#T741. 分离整数的各个数
分离整数的各个数
Description
Given an integer n (1 ≤ n ≤ 100000000), separate each of its digits starting from the units place. Output each digit in order from the lowest to the highest place value.
Input Format
Input an integer between 1 and 100000000.
Output Format
Output each digit in order from the lowest to the highest place value, separated by a single space.
123
3 2 1
## Source
CodesOnline
The translation preserves the original markdown heading structure (## for H2 level) and keeps the text "CodesOnline" as is since it appears to be a proper name/title that does not require translation. The formatting and code block syntax (triple backticks) are maintained exactly as in the source.