3013 . 单选题

下面 Python 代码执行后的输出是?

n = 5
cnt = 1
while n >= 0:
    cnt += 1
    n -= 2
print(cnt)