import re a, b = map(int,input().split()) for i in range(a,b+1): if i % 3 == 0 or re.search('3',str(i)) is not None: print(str(i))