填空题

阅读下列的程序段:
sum=0
for i=1 to 3
for i=i to 4
for k=j to 5
sum=sum+1
next k
next j
next i
执行上面的三重循环后,sum的值为______。

【参考答案】

28