渡されたパラメーター (引数) に結果を書き込むにはどうすればよいですか?
### permutation function
def xchg(a, b):
""" xchg function that does a permution for two integers
"""
a=a+b
b=a-b
a=a-b
a=int(input("Enter a number: "))
b=int(input("Enter another number: "))
xchg(a,b)
print("a= ", a)
print("b= ", b)