第15462题 单选
下列Python代码执行后的输出结果是哪一项
n = 10
tnt = 0
while n != 0:
    if n % 3:
        tnt += n
    n -= 1
print(tnt)
A

18

B

22

C

33

D

37