# ex_02-4 # Learning Perl on Win32 Systems, Exercise 2.4 print "String: "; $a = ; print "Number of times: "; chomp($b = ); $c = $a x $b; print "The result is:\n$c";