#!/usr/bin/perluse warnings;use strict;my $total=0;$total += $_ for @ARGV;print "The total is $total\n";