Divisible by a Prime Square


Submit solution

Points: 100
Time limit: 2.0s
Memory limit: 256M

Author:
Problem types

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

There are no comments at the moment.