PROGRAMMING:4.5 - count up from 1 to a certain number
Modify the program in code listing 4-7 as follows:
*Increasing from 1
*Enter a large value less than 0 without wrapping
*When the value you enter is 0, it does not wrap
-----From exercises 4-5
```
Please enter a positive integer: 12
1 2 3 4 5 6 7 8 9 10 11 12
```
```
Please enter a positive integer: - 9
```
###Input example:
```in
-9
```
###Output example:
```out
Please enter a positive integer:
```
answer:If there is no answer, please comment
*Increasing from 1
*Enter a large value less than 0 without wrapping
*When the value you enter is 0, it does not wrap
-----From exercises 4-5
```
Please enter a positive integer: 12
1 2 3 4 5 6 7 8 9 10 11 12
```
```
Please enter a positive integer: - 9
```
###Input example:
```in
-9
```
###Output example:
```out
Please enter a positive integer:
```
answer:If there is no answer, please comment