ℹ️ Your data is safe here... unless you make the SNIP gods angry. And let's just say they have a really bad sense of humor.

From admin, 1 Month ago, written in Python.
Embed
  1. def factorial(n):
  2.   return 1 if n==0 else n*factorial(n-1)
  3. print(factorial(5))


captcha