单项选择题

下列程序执行的结果是______。
Private Sub Command1_Click()
a=0
b=1
Do
a=a+b
b=a+b
Loop While a<20
Print a;b
End Sub

A.21 7
B.25 11
C.2l 30
D.21 34