import math
def product_of_natural_numbers(n):result = math.factorial(n)return result
n = 93result = product_of_natural_numbers(n)print(f"The product of the first {n} natural numbers is: {result}")
import math
def product_of_natural_numbers(n):
result = math.factorial(n)
return result
n = 93
result = product_of_natural_numbers(n)
print(f"The product of the first {n} natural numbers is: {result}")