a,b=list(map(int,input().split())) while a<=b: i=2 while i<a: if a%i==0: break; i+=1 else: print(a) a+=1