单选题

执行下面Python代码并输入1和0,输出是(    )。

a = int(input())

b = int(input())

if a and b:

      print("1")

elif not (a or b):

      print("2")

elif a or b:

      print("3")

else:

      print("4")

A

1

B

2

C

3

D

4

赣ICP备20007335号-2