public static void Main()
Console.WriteLine("enter the value of a");
a=int.Parse(Console.ReadLine());
Console.WriteLine("enter the value of b");
b=int.Parse(Console.ReadLine());
Console.WriteLine("After swapping the value of a is"+a+"and value of b is"+b);