using System;
namespace swap
{
class ab
static void main(string[] args)
int a=5,b=3,temp;
//swapping
temp=a;
a=b;
b=temp;
Console.WriteLine("Values after swapping are:");
Console.WriteLine("a="+a);
Console.WriteLine("b="+b);
}