a,b = gets.split.map(&:to_i) while a <= b do if a % 3 == 0 || /3/ =~ a.to_s puts a end a += 1 end