System Functions Perl

#!/usr/bin/perl 
print "Content-Type: text/html \n\n"; 
$random_number = rand(10); 
print "

Your Auto Lucky Number from 1 to 10 is $random_number.

\n"; 
$random_integer = int(rand(10)) + 1; 
print "

Your Auto Lucky Integer from 1 to 10 is $random_integer.

\n"; 
print "Click the Reload button on your browser to get a new random number.";