Run ID:141462

提交时间:2025-12-24 19:36:33

def p(n,m,s): m+=1 if m >= n: return n += 1 p(n) n = int(input()) p(n,1,0)