# telling_mom.rb

i = 1
loop do
  puts i
  break if i == 10
  i = i+1
end

puts "Mom I have finished printing 10"
