Implement a swap without using any temp variable nor using the built in swap function (like the swap() function in C++) to swap two integers.
example:
example:
a=1234;
b=2;
//[i]your code goes here[/i]
//a=2;
//b=1234;
I tested it on C++ and on PHP it worked.