#!/usr/bin/ruby a = "Ken" b = a.clone print "#{b} and #{a}\n" a = "Mary" print "#{b} and #{a}\n"