#P55. 练11.2 间隔输出
练11.2 间隔输出
Description
Write a function that takes a four-digit number as input and outputs the four digits with a space between each pair of digits. For example, if the input is , the output should be 1 9 9 0.
Input Format
Input consists of a four-digit number.
Output Format
Output the digits with a space between each pair.
Sample
19901 9 9 0
Related
In following homework: