Coding in poem:
Input an integer n
For i from 2 to n, then:
If n mod i is none
Print out "We are done"
Else do the for loop again
Conversation
OK
New:
Factorial (integer num) {
If num is nonzero then run:
Recurse and then print
Product of the int
times factorial(num-1)}
