Run ID:89445
提交时间:2024-08-24 18:04:44
def get(i, x): if i == 5: return i += 1 print(x) return get(i, x+2) get(0, 10)