PROGRAMMING:lease
Here's a once popular picture on Sina Weibo:

For a time, there was a cry for help on the Internet, asking how to break this. In fact, this code is very simple. The 'index' array is the subscript of the 'arr' array. The 'index [0] = 2' corresponds to 'arr [2] = 1','index [1] = 0 'corresponds to' arr [0] = 8 ','index [2] = 3' corresponds to 'arr [3] = 0', and so on... It's easy to get the phone number '1801382010'.
This problem requires you to write a program to generate this code for any phone number - in fact, as long as the first two lines are generated, the latter content is unchanged.
###Input format:
Enter an 11 digit mobile phone number in one line.
###Output format:
Generate the first two lines of the code for the entered number, where the numbers in 'arr' must be given in descending order.
###Input example:
```in
eighteen billion thirteen million eight hundred and twenty thousand and one hundred
```
###Output example:
```out
int[] arr = new int[]{8,3,2,1,0};
int[] index = new int[]{3,0,4,3,1,0,2,4,3,4,4};
```
answer:If there is no answer, please comment

For a time, there was a cry for help on the Internet, asking how to break this. In fact, this code is very simple. The 'index' array is the subscript of the 'arr' array. The 'index [0] = 2' corresponds to 'arr [2] = 1','index [1] = 0 'corresponds to' arr [0] = 8 ','index [2] = 3' corresponds to 'arr [3] = 0', and so on... It's easy to get the phone number '1801382010'.
This problem requires you to write a program to generate this code for any phone number - in fact, as long as the first two lines are generated, the latter content is unchanged.
###Input format:
Enter an 11 digit mobile phone number in one line.
###Output format:
Generate the first two lines of the code for the entered number, where the numbers in 'arr' must be given in descending order.
###Input example:
```in
eighteen billion thirteen million eight hundred and twenty thousand and one hundred
```
###Output example:
```out
int[] arr = new int[]{8,3,2,1,0};
int[] index = new int[]{3,0,4,3,1,0,2,4,3,4,4};
```
answer:If there is no answer, please comment