单项选择题

运行以下代码后,输出的结果是?()
a,b=(2,0)
if a>b:
if(a==2):
print(a)
else:
print(a+1)
else:
print(b)

A.2
B.3
C.0
D.1