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

PROGRAMMING:Output reverse order number

Luz5年前 (2021-05-10)题库384
Input a positive integer n, output its reverse order number. The reverse order number of n is the number that reverses the order of N digits. For example, the reverse order number of 700 is 7705 and the reverse order number is 507.
###Input example:
```in
eighteen thousand two hundred and ninety-nine
```
###Output example:
```out
ninety-nine thousand two hundred and eighty-one
```
###Input example:
```in
seven thousand
```
###Output example:
```out
seven
```







answer:If there is no answer, please comment