填空题

有如下程序:
Prinvate Sub Form_Click()
a=10
b=0
Do
b=b+a
a=a-2
Loop While a>2
Print b
End Sub
程序运行后,单击窗体,输出结果为______。

【参考答案】

28