using System;
namespace SwapTwoNoWithoutUsing3rdVarArithOperator
{
class Program
{
static void Main(string[] args)
{
int i = 65;
int k = 120;
Console.WriteLine("The value of i={0} and j={1} before swapping" ,i,k);
i = i ^ k;
k = i ^ k;
i = i ^ k;
Console.WriteLine("The value of i={0} and j={1} after swapping", i, k);
Console.ReadLine();
}
}
}