This commit is contained in:
Victor Alexandrovich Tsyrenschikov
2025-10-17 20:29:41 +05:00
parent a424c26142
commit ff258f68a4
2 changed files with 0 additions and 11 deletions

View File

@@ -1,10 +0,0 @@
import sys
def f(n):
if n == 1:
return 1
else:
return n * f(n-1)
sys.setrecursionlimit(3000)
print((f(2024)-f(2023))/f(2022))

1
one.py
View File

@@ -1 +0,0 @@
a=int(input("enter a number"))