Run ID:141073
提交时间:2025-12-21 09:45:59
def f(n): if n==10: return print(n) n+=2 f(n) b=f(10) print(b)