单项选择题

执行下列程序段后,变量a和b的值分别是______。
a=100:b=50
If a>b Then
a=a-b
Else
b=b+a
End If

A.50和50
B.100和50
C.100和150
D.150和100