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