a,b = gets.split.map(&:to_i) (a..b).each do |i| str = i.to_s if str.length > 1 split = str.split("") if i % 3 == 0 || split.index("3") puts i end else if i % 3 == 0 puts i end end end