下列语句执行结果是什么?
a = 1for i in range(5):    if i == 2:        break        a += 1    else:        a += 1print(a)
A、1
B、2
C、3
D、6