单项选择题

下输程序运行后,i最后一个取值为()。
data a;
i=1;output;
do until (i>9);
i+2;
output;
end;
run;

A.9
B.11
C.13
D.7