PROGRAMMING:S. Forbidden Zero
You’re writing the positive integers in increasing order starting from one. But you’ve never
learned the digit zero, and thus omit any number that contains a zero in any position. The first
ten integers you write are: 1, 2, 3, 4, 5, 6, 7, 8, 9, and 11.
You have just written down the integer n (which is guaranteed to not contain the digit zero).
What will be the next integer that you write down?
Main idea of the title
You write positive integers in ascending order from the beginning. But you've never learned the number zero, so you omit numbers that contain zeros anywhere.
The first ten integers you write are: 1, 2, 3, 4, 5, 6, 7, 8, 9, and 11.
You just wrote down the whole number (make sure it doesn't contain the number zero). What is the next integer you write down?
### Input:
The input consists of a single line containing the integer n (1 ≤ n ≤ 999,999).
It is guaranteed that n does not contain the digit zero.
The input consists of a single line containing an integer (n (1 < = n < = 99999). Make sure the number zero is not included.
### Output:
Print, on a single line, the next integer you will be writing down.
Print the next integer to record on a line.
### Sample Input1:
```in
ninety-nine
```
### Sample Output1:
```out
one hundred and eleven
```
### Sample Input2:
```in
one thousand two hundred and thirty-four
```
### Sample Output2:
```out
one thousand two hundred and thirty-five
```
answer:If there is no answer, please comment
learned the digit zero, and thus omit any number that contains a zero in any position. The first
ten integers you write are: 1, 2, 3, 4, 5, 6, 7, 8, 9, and 11.
You have just written down the integer n (which is guaranteed to not contain the digit zero).
What will be the next integer that you write down?
Main idea of the title
You write positive integers in ascending order from the beginning. But you've never learned the number zero, so you omit numbers that contain zeros anywhere.
The first ten integers you write are: 1, 2, 3, 4, 5, 6, 7, 8, 9, and 11.
You just wrote down the whole number (make sure it doesn't contain the number zero). What is the next integer you write down?
### Input:
The input consists of a single line containing the integer n (1 ≤ n ≤ 999,999).
It is guaranteed that n does not contain the digit zero.
The input consists of a single line containing an integer (n (1 < = n < = 99999). Make sure the number zero is not included.
### Output:
Print, on a single line, the next integer you will be writing down.
Print the next integer to record on a line.
### Sample Input1:
```in
ninety-nine
```
### Sample Output1:
```out
one hundred and eleven
```
### Sample Input2:
```in
one thousand two hundred and thirty-four
```
### Sample Output2:
```out
one thousand two hundred and thirty-five
```
answer:If there is no answer, please comment