有如下Python程序段:
cnt=0
for i in range(0,10):
for j in range(0,10):
if i+j==10:
cnt+=1
print(cnt)
运行该程序后cnt的值为?( )
9
10
11
12