PROGRAMMING:Special palindrome number
Problem description
123321 is a very special number. It is the same to read from the left as it is read from the right.
Enter a positive integer n, program to find all such five and six decimal numbers, so that the sum of all numbers is equal to n.
###Input format:
Enter a line containing a positive integer n. Data size and agreement 1 < = n < = 54.
###Output format:
According to the order from small to large output meet the conditions of the integer, each integer occupies a line.
###Input example:
Here is a set of inputs. For example:
```in
fifty-two
```
###Output example:
The corresponding output is given here. For example:
```out
eight hundred and ninety-nine thousand nine hundred and ninety-eight
nine hundred and eighty-nine thousand nine hundred and eighty-nine
nine hundred and ninety-eight thousand eight hundred and ninety-nine
```
answer:If there is no answer, please comment
123321 is a very special number. It is the same to read from the left as it is read from the right.
Enter a positive integer n, program to find all such five and six decimal numbers, so that the sum of all numbers is equal to n.
###Input format:
Enter a line containing a positive integer n. Data size and agreement 1 < = n < = 54.
###Output format:
According to the order from small to large output meet the conditions of the integer, each integer occupies a line.
###Input example:
Here is a set of inputs. For example:
```in
fifty-two
```
###Output example:
The corresponding output is given here. For example:
```out
eight hundred and ninety-nine thousand nine hundred and ninety-eight
nine hundred and eighty-nine thousand nine hundred and eighty-nine
nine hundred and ninety-eight thousand eight hundred and ninety-nine
```
answer:If there is no answer, please comment