# no_13.rb

i = 0
loop do
  i = i + 1
  next if i == 13
  puts i
  break if i == 20
end
