PROGRAMMING:Operators and Expressions
Input a 3-bit integer and expand it to 5-bit integer according to the principle of symmetry.
###Input format:
Enter a three digit integer.
Note: if the input is not three digits (two or four digits), it will not be processed and there will be no output.
###Output format:
When inputting a three digit integer, output a five digit integer, add one digit before and after the three digit, and copy the hundreds and bits of the three digit respectively.
When the input data is not three bits, there is no output information.
###Input example:
```in
one hundred and twenty-three
```
###Output example:
```out
eleven thousand two hundred and thirty-three
```
answer:If there is no answer, please comment
###Input format:
Enter a three digit integer.
Note: if the input is not three digits (two or four digits), it will not be processed and there will be no output.
###Output format:
When inputting a three digit integer, output a five digit integer, add one digit before and after the three digit, and copy the hundreds and bits of the three digit respectively.
When the input data is not three bits, there is no output information.
###Input example:
```in
one hundred and twenty-three
```
###Output example:
```out
eleven thousand two hundred and thirty-three
```
answer:If there is no answer, please comment