PROGRAMMING:Number of divisors (function implementation)
Returns all the divisors of a positive integer. The main function inputs several integers and outputs their divisors in turn. One output occupies one line. If it is a prime, it outputs is prime in this line.
###Input example:
```in
100 101 1001
```
###Output example:
```out
nine
2 Is Prime
eight
```
answer:If there is no answer, please comment
###Input example:
```in
100 101 1001
```
###Output example:
```out
nine
2 Is Prime
eight
```
answer:If there is no answer, please comment