import math A, B = map(int, input().split()) for i in range(A, B+1): if i % 3 == 0: print(i) else: while i > 0: a = i % 10 i /= 10 if a == 3: print(math.floor(i))