第10717题 判断
判断给定Python代码中print(N)语句是否仅会被执行0次或陷入死循环
N = input()
while N:
    print(N)
A

正确

B

错误