PROGRAMMING:Any bit combination new integer (reverse order)
Write a program to input a number of one bit non negative integers (with - 1 as the end mark), and combine them into a new integer according to the order of the first one as the low bit and the second one as the high bit, and finally output the result.
###Input format:
Enter no more than 9 one digit non negative integers on a single line, separated by spaces and ending with - 1.
###Output format:
Output the new integer combined into, and finally wrap.
###Input example:
```in
1 3 5 7 9 0 2 6 8 -1
```
###Output example:
```out
eight hundred and sixty-two million ninety-seven thousand five hundred and thirty-one
```
answer:If there is no answer, please comment
###Input format:
Enter no more than 9 one digit non negative integers on a single line, separated by spaces and ending with - 1.
###Output format:
Output the new integer combined into, and finally wrap.
###Input example:
```in
1 3 5 7 9 0 2 6 8 -1
```
###Output example:
```out
eight hundred and sixty-two million ninety-seven thousand five hundred and thirty-one
```
answer:If there is no answer, please comment