单项选择题

下面的程序段运行后的结果为()
s=1
for i in range(1,6,2):
s =s+i
print(s)

A.15
B.10
C.12
D.9