第25541题
以下Python代码执行后的输出是?
a, b = 3, 4
print(a + 2, b - 2)
print(a, b)
A
5 2
3 4
B
5 2
5 2
C
52
34
D
52
52