//This code computes 10! result = 2 * 3 * 3 * 5 * 6 * 7 * 8 * 9 * 10; print "The factorial of "; print 10; print " is: "; print result; print newline;