class Swap
{
public static void main(String[] args)
{
int a = 5;
int b = 10;
int temp;
System.out.println("Before swapping, a: "+a+" b: "+b);
temp = a;
a = b;
b = temp;
System.out.println("After swapping, a: "+a+" b: "+b);
}
}
class SwapNumber
{
public static void main(String[] args)
{
int a = 15;
int b = 17;
System.out.println("Before swapping a: "+a+", b: "+b);
a = a + b;
b = a - b;
a = a - b;
System.out.println("After swapping a: "+a+", b: "+b);
}
}