input = gets.chomp a, b = input.split.map{|n| n.to_i } a.upto(b) do |n| if n %3 == 0 || n.to_s.include?("3") puts n end end