Language Basics Perl

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