运行下方代码段,输出的结果是( )。
a,b,c,d = 3,5,8,10
def exchange(a,b):
return b,a
c,d = exchange(a, b)
print(a,b)
3 5
5 3
8 10
10 8