单项选择题

以下程序运行时,输入3和4后输出的结果是______。
Private Sub Command1_Click()
a=InputBox(“请输入a的值”)
b=InputBox(“请输入b的值”)
Print a+b
End Sub

A.3+4
B.7
C.34
D.12