Write a program to swap 2 numbers -Without 3rd variable. code example Example: how to swap 2 numbers without 3rd variable int a = 3; int b = 5; a = b*a; b = a/b a = a/b