PROGRAMMING:Generating m k-digit captcha 2
Enter m, N and K in the same row, n as seed, generate a k-bit random number verification code, which is the next seed, and then generate a k-bit random number verification code... Until m random number verification codes are generated. The generated m random number verification codes are output according to the sample.
m. N, k = input (). Split () # enter m, N, K in the same line
RandInt (10009999) # generates an integer between [10009999]
###Input format:
Enter m, N, and K on the same line. The numbers are separated by spaces.
###Output format:
Output in M lines.
###Input example:
Here is a set of inputs. For example:
```in
3 4 5
```
###Output example:
The corresponding output is given here. For example:
```out
forty thousand nine hundred and thirty-nine
thirty-three thousand one hundred and nineteen
twenty-six thousand two hundred and forty-one
```
answer:If there is no answer, please comment
m. N, k = input (). Split () # enter m, N, K in the same line
RandInt (10009999) # generates an integer between [10009999]
###Input format:
Enter m, N, and K on the same line. The numbers are separated by spaces.
###Output format:
Output in M lines.
###Input example:
Here is a set of inputs. For example:
```in
3 4 5
```
###Output example:
The corresponding output is given here. For example:
```out
forty thousand nine hundred and thirty-nine
thirty-three thousand one hundred and nineteen
twenty-six thousand two hundred and forty-one
```
answer:If there is no answer, please comment