6 lines
73 B
Python
6 lines
73 B
Python
def f(x, y):
|
|
x = x + y
|
|
y = x - y
|
|
x = x - y
|
|
return (x, y)
|