PROGRAMMING:Output integer in reverse order
This topic requires reading in an arbitrary number of integers, output its value in reverse order. Note that the output does not include leading 0, for example, input 1200, output 21
###Input format:
Enter an integer in one line
###Output format:
Output an integer in reverse order
###Input sample 1:
Here is a set of inputs. For example:
```in
one thousand two hundred and thirty
```
###Output sample 1:
```out
three hundred and twenty-one
```
###Input sample 2:
Here is a set of inputs. For example:
```in
one thousand two hundred and five
```
###Output sample 2:
```out
five thousand and twenty-one
```
answer:If there is no answer, please comment
###Input format:
Enter an integer in one line
###Output format:
Output an integer in reverse order
###Input sample 1:
Here is a set of inputs. For example:
```in
one thousand two hundred and thirty
```
###Output sample 1:
```out
three hundred and twenty-one
```
###Input sample 2:
Here is a set of inputs. For example:
```in
one thousand two hundred and five
```
###Output sample 2:
```out
five thousand and twenty-one
```
answer:If there is no answer, please comment