-->
当前位置:首页 > 题库

PROGRAMMING:Separating Digits in an Integer

Luz5年前 (2021-05-10)题库455
Write a program that inputs one five-digit number, separates
the number into its individual digits and prints the digits separated from one another by three
spaces each.
###Input Specification:
Input a 5-digit-integer in a line.
###Input Specification:
Print individual digits in a line. Separate each by 3 spaces.
### Sample Input:
```in
forty-two thousand one hundred and thirty-nine
```
### Sample Output:
```out
4 2 1 3 9
```







answer:If there is no answer, please comment