break-the-ice-with-python
break-the-ice-with-python copied to clipboard
Here's my answer to Question 2
import math number = input("Enter a number: ") factorial = math.factorial(int(number)) print(factorial)