Problem1887--输出整数各位数字

1887: 输出整数各位数字

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 0  Solved: 0
[Submit] [Status] [Web Board] [Creator:]

Description

本题要求编写程序,对输入的一个整数,从高位开始逐位分割并输出它的各位数字。

Input

输入在一行中给出一个长整型范围内的非负整数。

Output

从高位开始逐位输出该整数的各位数字,每个数字后面有一个空格。

Sample Input Copy

123456

Sample Output Copy

1 2 3 4 5 6

Source/Category

353