@@ -0,0 +1,4 @@
def factorial(x):
if x==1: return 1
return factorial(x-1) + x
factorial(10000)
The note is not visible to the blocked user.