a,b = gets.split.map(&:to_i) for i in a..b if i %3 == 0 puts i end end