How to swap two variables, without using third variable ?
a=10; b=20; a=a+b; b=a-b; a=a-b; a=20,b=10;