PROGRAMMING:Output the digits of an integer in reverse order
This problem requires the preparation of procedures for the input of a non negative integer, starting from the low 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 low order, with a space after each digit.
###Input example:
```in
one million two hundred and thirty-four thousand five hundred and sixty
```
###Output example:
```out
0 6 5 4 3 2 1
```
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 low order, with a space after each digit.
###Input example:
```in
one million two hundred and thirty-four thousand five hundred and sixty
```
###Output example:
```out
0 6 5 4 3 2 1
```
answer:If there is no answer, please comment