python元素交换 ```python a = int(input("输入一个数:")) b = int(input("输入一个数:")) print("%d,%d"%(a,b)) c = a a = b b = c print("%d,%d"%(a,b))