PRIME1 - Prime Generator

Peter wants to generate some prime numbers for his cryptosystem. Help him! Your task is to generate all prime numbers between two given numbers!

Input

The input begins with the number t of test cases in a single line (t<=10). In each of the next t lines there are two numbers m and n (1 <= m <= n <= 1000000000, n-m<=100000) separated by a space.

Output

For every test case print all prime numbers p such that m <= p <= n, one number per line, test cases separated by an empty line.

Example

Input:
2
1 10
3 5

Output:
2
3
5
7

3
5
Warning: large Input/Output data, be careful with certain languages (though most should be OK if the algorithm is well designed)

Information

After cluster change, please consider PRINT as a more challenging problem.

Added by:Adam Dzedzej
Date:2004-05-01
Time limit:6s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: NODEJS PERL6

hide comments
2016-11-28 01:09:16 Wahyu Hendro Hartono
reduce checking if you got TLE. you don't have to check for all divider. think about it. minimalize it

Last edit: 2016-11-28 01:10:20
2016-11-27 16:35:42
i also have a problem with "time limit exceed". i dont know what wrong
2016-11-26 16:17:20
time limit exceeded

Last edit: 2016-12-11 09:35:22
2016-11-25 16:17:03
time limit exceed and don't know what to now.I solved it but...
2016-11-20 21:53:08
What is limited time exceed i have same problem any body know what is this???
2016-11-19 05:34:41
I WANT TO SOLVE IT HELP ME PLEASE!
2016-11-12 05:20:27
how to do this thing
it is almost imposssible...

Last edit: 2016-11-12 05:21:07
2016-11-11 12:06:01
use segmented sieve for best results and modify sieve according to requirements
2016-11-06 08:14:27
accepted in 0.09 sec!!
2016-10-29 06:10:48
My code works Just fine in ideone and when i submit the solution it says runtime limit exceeded. can anyone help me understand the runtime here and how to overcome it? Please
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.