using System;
public class Program
{
public static void Main()
/* you need three variables so that you don't erase the second variable while swapping the first for it */
int a = 5, b = 6, c;
c = b;
b = a;
a = c;
Console.WriteLine(a);
Console.WriteLine(b);
}