n = list(raw_input().split()) i = int(n[0]) while i < int(n[1]) + 1: if i % 3 == 0 or "3" in str(i): print i i += 1