PROGRAMMING:Output all divisors of an integer (excluding 1 and itself).
This topic requires reading in an integer and outputting all its divisors (exhaustive method). If it is a divisor, it will be output without breaking.
###Input format:
Enter a positive integer (int type, read with% d). There is no need to consider illegal input).
###Output format:
Output all divisors of the integer (Note: does not contain 1 and itself). For simplicity, spaces separate data and assume that there are spaces at the end of the last data. Such as printf (% d ", I); Format output each divisor I can.
###Input example:
```in
twenty
```
###Output example:
```out
2 4 5 10
```
answer:If there is no answer, please comment
###Input format:
Enter a positive integer (int type, read with% d). There is no need to consider illegal input).
###Output format:
Output all divisors of the integer (Note: does not contain 1 and itself). For simplicity, spaces separate data and assume that there are spaces at the end of the last data. Such as printf (% d ", I); Format output each divisor I can.
###Input example:
```in
twenty
```
###Output example:
```out
2 4 5 10
```
answer:If there is no answer, please comment