1215: C语言8.20

Memory Limit:32 MB Time Limit:1.000 S
Judge Style:Normal Judger Creator:
Submit:4 Solved:2

Description

写一个函数,输入一个4位数字,要求输出这4个数字字符,但每两个数字间空一个空格。例如输入1990,则应输出“1 9 9 0”。

Input

在一行内有4位数字。

Output

将4位数字间添加空格后逐位输出。
请注意行尾输出换行。

Sample Input Copy

2013

Sample Output Copy

2 0 1 3

Source/Category