PROGRAMMING:Output integers and digits
This problem requires the preparation of procedures for the input of an integer, starting from the high bit by bit division and output of its digits.
###Input format:
The input gives a nonnegative integer in a long integer range on one line.
###Output format:
Output the digits of the integer bit by bit from the high bit, with a space after each digit.
###Input example:
```in
one hundred and twenty-three thousand four hundred and fifty-six
```
###Output example:
```out
1 2 3 4 5 6
```
answer:If there is no answer, please comment
###Input format:
The input gives a nonnegative integer in a long integer range on one line.
###Output format:
Output the digits of the integer bit by bit from the high bit, with a space after each digit.
###Input example:
```in
one hundred and twenty-three thousand four hundred and fifty-six
```
###Output example:
```out
1 2 3 4 5 6
```
answer:If there is no answer, please comment