#!/usr/bin/perluse warnings;use strict;my @words;while (<>) { # read each line into $_ in turn push @words, split; # split $_ into words and store them}print "Found ", scalar(@words), " words in input \n";