String Perl

$headline = "a b c d e";
foreach (split " ", $headline) {
    print ucfirst, " ";
}