Problem2832--不停地取出个位

2832: 不停地取出个位

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 35  Solved: 31
[Status] [Submit] [Creator:]

Description

输入一个整数 a(1 ≤ a ≤ 1000000),从低位到高位不停地取得每一位

输出这个过程中 的每一位

Input

一个整数 a(1 ≤ a ≤ 1000000)。

Output

按照a从低位到高位变成过的数字。每个数占一行。  

Sample Input Copy

123456

Sample Output Copy

6
5
4
3
2
1

Source/Category