using System;
public class swap
{
public static void Main()
int a=4,b=7;
Console.WriteLine("swaping of {0} and {1} is {1} and {0}",a,b);
}