Matt Owen
resume
portfolio
source code for "
files/pe/pe_016.pl
"
return to portfolio
#!/usr/bin/perl
use strict
;
use warnings
;
use bigint
;
my
(
$s
,
$k
)
=
(
0
,
0
)
;
$_
=
2
*
*1
000
;
while
(
$_
)
{
$k
=
chop
;
$s
+=
$k
;
}
print
$s
;