3172: 绝对素数(GESP)

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:1 Solved:1

Description

如果一个两位数是素数, 且它的数字位置经过对换后仍为素数, 则称为绝对素数,例如 13。 给定两个正整数 A、 B, 请求出大于等于 A、 小于等于 B 的所有绝对素数。

Input

输入1行,包含两个整数A和B,保证10<A<B<100。

Output

输出若干行,每行是一个绝对素数,从小到大输出。

Sample Input Copy

11 20

Sample Output Copy

11
13
17