阅读下面代码,正确的输出是____。
tot = 0 cnt = 10 j = 1 while tot < 10: for i in range(j): cnt += 1 tot += j j += 1 print(cnt)