单项选择题

在窗体上画一个名称为Command1的命令按钮,然后编写如下程序:
Private Sub Command1_ Click()
Static x As Integer
Static y As Integer
Cls
y=1
y=y+5
x=y +x
Print x, y
End Sub
程序运行时,三次单击命令按钮Command1后,窗体上显示的结果为______。

A.15 16
B.15 6
C.15 15
D.5 6