Run ID:141062
提交时间:2025-12-21 09:20:07
p=1 def f(n): if n==10: return 1 else: return f(n+1)*2+2 res=f(1) print(res)