单项选择题

执行如下程序段后,变量x、y的值分别为()。
x=2
y=3
if x>y then
x=x+y
print x,y
else
x=x-y
print x,y
end if

A.-1、3
B.1、3
C.3、-1
D.3、1