A, B = map(int, input().split()) for n in range(A, B+1): if n%3 ==0 or "3" in list(str(n)): print(n)