# 入力された値を文字列で受け取る a, b = gets.chomp.split.map { _1.to_i } puts (a..b).select { _1 % 3 == 0 || _1.to_s =~ /3/ }