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

PROGRAMMING:Detach a three-digit integer

Luz5年前 (2021-05-10)题库826
Input a three-digit integer, detach its units, tens and hundr.ds, and output them on the screen.
### Input:
Input a three-digit integer.
### Output:
Output the units, tens and hundreds of input in one line, seperated by comma
### Input sample:
```
five hundred and seventy-six
```
### Output sample:
```
5, 7, 6
```






answer:If there is no answer, please comment