单项选择题

以下程序段的输出结果为 ______。
X=1
Y=4
Do Until Y>4
X=X*Y
Y=Y+1
Loop
Print X

A.1
B.4
C.8
D.20