Home
ProblemSet
Contest
Status
Ranklist
F.A.Qs
Login
Register
1467: 【Python】数字之间插入空格
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:25
Solved:22
Submit
Submit Record
Statistics
Web Board
ShowOff!
Description
输入一个四位数字,每两个数字间空格,然后
输出这四个数字字符
。如输入1990,应输出"1 9 9 0"。
Input
一个四位数
Output
增加空格输出
Sample Input
Copy
1990
Sample Output
Copy
1 9 9 0
Source/Category
Python
字符串