PROGRAMMING:4.14 - circulates the number of specified digits
Write a program, such as the following, according to the input integer, loop display 1234567890, display the number of digits and input integer value is the same.
-----From exercise 4-14
```
Please enter an integer: 25
1234567890123456789012345
```
```
Please enter an integer: - 25
```
Note: if you enter a negative number or 0, nothing will be output.
###Input example:
```in
twenty-five
```
###Output example:
```out
Please enter an integer: 123456789012345
```
answer:If there is no answer, please comment
-----From exercise 4-14
```
Please enter an integer: 25
1234567890123456789012345
```
```
Please enter an integer: - 25
```
Note: if you enter a negative number or 0, nothing will be output.
###Input example:
```in
twenty-five
```
###Output example:
```out
Please enter an integer: 123456789012345
```
answer:If there is no answer, please comment