阅读下面代码,正确的输出是( )
tot = 0 cnt=10 j=1 while tot<10: for iin range(j) cnt+=1 tot+=i j+=1 print(cnt)
15
28
21
25