a,b=map(int,raw_input().strip().split()) while (a<=b): i=2 while (i<=(a/i)): if not(a%i):break i=i+1 if (i>a/i):print a a=a+1