PROGRAMMING:Displays and sums the primes in the specified range
This problem requires the display of a given integer m and N interval prime and their summation.
###Input format
Enter two positive integers m and N on one line (1 ≤ m ≤ n ≤ 100000).
###Output format
Display the prime numbers in the specified range, empty one space after each prime number, and change one line for every five prime numbers.
The last line outputs the number of primes and the sum of primes.
###Input sample
```in
4 30
```
###Output sample
```out
5 7 11 13 17
19 23 29
8 124
```
Note: the output 8 of the last line means that there are 8 primes, and 124 is the sum of them< br>
answer:If there is no answer, please comment
###Input format
Enter two positive integers m and N on one line (1 ≤ m ≤ n ≤ 100000).
###Output format
Display the prime numbers in the specified range, empty one space after each prime number, and change one line for every five prime numbers.
The last line outputs the number of primes and the sum of primes.
###Input sample
```in
4 30
```
###Output sample
```out
5 7 11 13 17
19 23 29
8 124
```
Note: the output 8 of the last line means that there are 8 primes, and 124 is the sum of them< br>
answer:If there is no answer, please comment