Get your own Python server Result Size: 625 x 565
x
 
#Import math Library
import math  
#Return factorial of a number
print(math.factorial(9))
print(math.factorial(6))
print(math.factorial(12))
362880
720
479001600