This is example code for swap two number variables.
a = -(a + b)
b = -(a + b)
a = -(b + a)
Show what happens.
as you can see, two number swapped.
This code looks like some mathmatical technique but none. worthy of a special mention, there is no tempolary variable.