1703: 【CSP基础】求六位整数的各个位▅

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:21 Solved:17

Description

从键盘读入一个 lns="http://www.w3.org/1998/Math/MathML">6 位整数 lns="http://www.w3.org/1998/Math/MathML">n,请求出这个 lns="http://www.w3.org/1998/Math/MathML">6 位整数各个位分别是多少?

从高位到低位依次输出,每行一个。

Input

一个 lns="http://www.w3.org/1998/Math/MathML">6 位整数 lns="http://www.w3.org/1998/Math/MathML">n 

Output

第 lns="http://www.w3.org/1998/Math/MathML">1 行输出 lns="http://www.w3.org/1998/Math/MathML">6 位数的十万位

第 lns="http://www.w3.org/1998/Math/MathML">2 行输出 lns="http://www.w3.org/1998/Math/MathML">6 位数的万位

第 lns="http://www.w3.org/1998/Math/MathML">3 行输出 lns="http://www.w3.org/1998/Math/MathML">6 位数的千位

第 lns="http://www.w3.org/1998/Math/MathML">4 行输出 lns="http://www.w3.org/1998/Math/MathML">6 位数的百位

第 lns="http://www.w3.org/1998/Math/MathML">5 行输出 lns="http://www.w3.org/1998/Math/MathML">6 位数的十位

第 lns="http://www.w3.org/1998/Math/MathML">6 行输出 lns="http://www.w3.org/1998/Math/MathML">6 位数的个位

Sample Input Copy

123456

Sample Output Copy

1
2
3
4
5
6