Unless you need to do something else, you're going a very long way around...
print join(", ", sort { $a <=> $b } keys %totals);
join concatenates an array using the delimiter given as the first argument, which is perfect for what you're after.
UPDATE
My solution does work, you need to provide more info in your question.
Add the keys to an array, and print them when you're done, i.e.:
my @keys;
foreach my $cmp_id (sort { $a <=> $b } keys %totals){
push @keys, $cmp_id;
... other processing
}
print join(", ", @keys);
my $pad = ""; foreach my $cmp_id (...) { print "$pad$cmp_id"; $pad = ", "; } print "\n"where the post-loop newline is not in the original but likely to be needed. – Jonathan Leffler Sep 15 '11 at 23:27