The Numbers
echo " p $p q $q";
$big_num = `echo $p^$q | bc | sed -f /var/www/html/rsa/nlhtml.sed `;
//$big_num = `echo $p^$q | bc | sed -f /home/robin/scripts/nlhtml.sed `;
//$big_num = `echo $p^$q | bc`;
printf("
the big number
%s ",$big_num);
printf(" which is the result of %s^%s
\n", $p,$q);
?>