单项选择题

以下程序段运行时从键盘上输入字符“-”,则输出结果为
op$=InputBox("op=")
If op$="+"Then a=a+2
If op$="-"Then a=a-2
Print a

A.2
B.-2
C.0
D.+2