There are two integer variables. Can you swap those integer variables without using any if conditions, without casting, and without using additional variables? For example:
int a = 10;
int b = 5;
a > b always. The answer should be a == 5 and b == 10