运行下方代码段,输出的是( )。
x, y = 3, 2
if x > 2:
if y > 2:
z = x + y
print("z is ", z)
else:
print("y is ", y)
print("x is ", x)
z is 5
y is 2
x is 3
x is 2