A,B=gets.split.map(&:to_i) for num in A..B do if num % 3 == 0 || num.to_s.include?("3") puts num end end