using System;
public class Program
{
static void Main(string[] args)
int a = 5;
int b = 6;
Console.WriteLine(a +" "+ b);
swap(ref a, ref b);
Console.WriteLine(a + " " + b);
}
static void swap(ref int x, ref int y)
int temp = x;
x = y;
y = temp;