eolymp
bolt
Try our new interface for solving problems
Problems

Super numbers

Super numbers

Super number is the number that is the sum of two primes in the range [2 ... b]. Find all super numbers from the specified range [a ... b].

Input

Two numbers a and b (2ab40000), defining the range [a ... b].

Output

Print all super numbers from the specified range in ascending order.

Time limit 1 second
Memory limit 122.17 MiB
Input example #1
3 13
Output example #1
4 5 6 7 8 9 10 12 13