Run ID:141464
提交时间:2025-12-24 20:57:34
def f(n): if n == 10: return 1 return (f(n+1)+1)*2 a = f(1) print(a)