##
foreach my $word(split /\s+/, $input) {
$everything {$word}++;
$words++;
}
####
foreach $word(keys %everything) {
print "$word was seen $everything{$word} times\n";
}
####
print start_table({-border=>1});
print Tr(td('Keys'), td('Values'));
print Tr(td(print("@countKey")), td(@countValue));
print end_table;