PROGRAMMING:Simple positive integer reverse order
Write a program to read in a 5-digit decimal positive integer through the keyboard, and then output the number in reverse order (10000 bits become individual bits, 1000 bits become 10 bits, 100 bits are still 100 bits, 10 bits become 1000 bits, individual bits become 10000 bits).
###Input format:
One five digit M( 5 is a positive integer)
###Output format:
The result of M reverse order.
###Input example:
Here is a set of inputs. For example:
```in
thirty-five thousand four hundred and twenty-five
```
###Output example:
The corresponding output is given here. For example:
```out
fifty-two thousand four hundred and fifty-three
```
answer:If there is no answer, please comment
###Input format:
One five digit M( 5 is a positive integer)
###Output format:
The result of M reverse order.
###Input example:
Here is a set of inputs. For example:
```in
thirty-five thousand four hundred and twenty-five
```
###Output example:
The corresponding output is given here. For example:
```out
fifty-two thousand four hundred and fifty-three
```
answer:If there is no answer, please comment