#coding: utf-8 a, b = map(int, input().split()) for i in range(a, b+1): if (str(i).find("3") > -1) or (i % 3 == 0): print(i)