1037: 三位数各位分割

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:13 Solved:6

Description

输入一个三位正整数,输出这个数各个数位上的数字。

Input

一个三位正整数

Output

依次输出其百位、十位、个位数字,中间用空格分隔

Sample Input Copy

123

Sample Output Copy

1 2 3

Source/Category