#!/usr/bin/env perl -w
$count = 1;
$times = 5;
while ($count <= $times) {
print "hello " x $count;
print "\n";
$count += 1;
}

#!/usr/bin/env perl -w
$count = 1;
$times = 5;
while ($count <= $times) {
print "hello " x $count;
print "\n";
$count += 1;
}