PROGRAMMING:Output a factor of a number
Input a positive integer n and output a list of all the positive factors of N. pay attention to the output format. Separate the two numbers with commas and empty a lattice.
###Input format:
Enter a positive integer n.
###Output format:
Output a list of all positive integers containing N, separated by commas and empty a space
###Input sample 1:
Here is a set of inputs. For example:
```in
one
```
###Output sample 1:
The corresponding output is given here. For example:
```out
[1]
```
###Input sample 2:
Here is a set of inputs. For example:
```in
one hundred
```
###Output sample 2:
The corresponding output is given here. For example:
```out
[1, 2, 4, 5, 10, 20, 25, 50, 100]
```
answer:If there is no answer, please comment
###Input format:
Enter a positive integer n.
###Output format:
Output a list of all positive integers containing N, separated by commas and empty a space
###Input sample 1:
Here is a set of inputs. For example:
```in
one
```
###Output sample 1:
The corresponding output is given here. For example:
```out
[1]
```
###Input sample 2:
Here is a set of inputs. For example:
```in
one hundred
```
###Output sample 2:
The corresponding output is given here. For example:
```out
[1, 2, 4, 5, 10, 20, 25, 50, 100]
```
answer:If there is no answer, please comment