貌似CGI问题,请指教【入门问题】

我想他是想实现一个计数器
#!/usr/bin/perl

print "Content-type: text/html\n\n";
my ($m,$n,$total);
$m=1;
$n=2;
$total=$m+$n;
print $total;