import math; a,b = input().split() for i in range(int(a),int(b)): if (i%3 == 0): print(i); elif(str(i).find('3') != -1):#3が含まれるか print(i);