Help for this page
Use a loop to write all numbers between 1 and 10
for ($j=1; $j<=10; $j++) { print "$j\n"; }
Calculate the factorial for a user-defined number.