单项选择题

下列程序段,运行后输出的内容是
a=2
c=1
c=c+a
If c<10 Then
Print c
Else
Print a
End If

A.3
B.7
C.9
D.6