#!/usr/bin/perluse warnings;use strict;my @words;push @words, split foreach(<>);print scalar(@words), " words: @words \n";