PROGRAMMING:Produce the same number of N digits for each digit
Read in two positive integers a and B, 1 < = a < = 9, 1 < = B < = 10, and generate the number AA... A, a total of B a
###Input format:
Enter a and B on one line.
###Output format:
Output the integer AA... A in one line, a total of B a
###Input sample 1:
Here is a set of inputs. For example:
```in
1, 5
```
###Output sample 1:
The corresponding output is given here. For example:
```out
eleven thousand one hundred and eleven
```
###Input sample 2:
Here is a set of inputs. For example:
```in
3 ,4
```
###Output sample 2:
The corresponding output is given here. For example:
```out
three thousand three hundred and thirty-three
```
answer:If there is no answer, please comment
```
a,b=input().split(',')
print(int(str(int(a))*int(b)))
```
###Input format:
Enter a and B on one line.
###Output format:
Output the integer AA... A in one line, a total of B a
###Input sample 1:
Here is a set of inputs. For example:
```in
1, 5
```
###Output sample 1:
The corresponding output is given here. For example:
```out
eleven thousand one hundred and eleven
```
###Input sample 2:
Here is a set of inputs. For example:
```in
3 ,4
```
###Output sample 2:
The corresponding output is given here. For example:
```out
three thousand three hundred and thirty-three
```
answer:If there is no answer, please comment
```
a,b=input().split(',')
print(int(str(int(a))*int(b)))
```