a,b=map(int,input().split()) for i in range(a,b+1): flg=0 if i%3==0: flg=1 if i%10==3: flg=1 if(i>=30 and i<=39): flg=1 if flg==1: print(i)