PROGRAMMING:Output prime
Program to input two integers a and B (2 < = a < b), and output all prime numbers in the integer interval [a, b] (prime numbers are guaranteed in the test data). Please refer to the example for input and output format.
###Input example:
```in
100 110
```
###Output example:
```out
101,103,107,109
```
answer:If there is no answer, please comment
###Input example:
```in
100 110
```
###Output example:
```out
101,103,107,109
```
answer:If there is no answer, please comment