下列程序的输出结果是14
count = 0for x in range(2, 5):    count = count + xprint(count)
A、正确
B、错误