2802 . 单选题

下面Python代码执行时输入10后,正确的输出是

N = int(input("请输入正整数:"))
if N % 3:
print("第3行代码", N % 3, sep = "")
else:
print("第4行代码", N % 3, sep = "")