Divisible by a Prime Square
List all integers in \([a,b]\) that are divisible by the square of at least one prime.
Input
One line containing \(a\) and \(b\).
The input satisfies:
- \(1 \le a \le b \le 10^6\)
Output
Print the qualifying integers in increasing order, separated by single spaces.
Example
Input
1 10
Output
4 8 9
Comments