@@ -1,5 +1,10 @@
b=8;m=0
import sys
for i in range(1,b+1):
if i%2==0:
def factorial(n):
m=m+i/2
if n == 0:
print(m+b)
return 1
else:
return n * factorial(n-1)
sys.setrecursionlimit(10000)
print(factorial(1000))
The note is not visible to the blocked user.