- You've to print all prime numbers between a range.
- Take as input "low", the lower limit of range.
- Take as input "high", the higher limit of range.
- For the range print all the primes numbers between low and high (both included).
Sample Input:
6
24
Sample Output:
7
11
13
17
19
23
Constraints:
2 <= low < high < 10 ^ 6