单项选择题

当变量x=2,y=5时,以下程序的输出结果为( )。
Do Until y>5
  x=x*y
  y=y+1
Loop
print x

A.2
B.5
C.10
D.20