Range Ruby

for i in 1..12
  print "2 x " + i.to_s + " = ", i * 2, "\n"
end