Hy guys there is a 2 int variable. can u swap those int variables with out using any if conditions as well as without any casting.and u cannot use any more variables.
ie :
int a=10;
int b= 5;
always a>b;
the answer should be a=5;b=10;