单项选择题

有如下程序:
a = 100
Do While a > 120
s=s+a
a=a+1
Loop
Print a
运行时输出的结果是( )。

A.100
B.120
C.201
D.101