using System; public class Test { public static void Main() { int x = 1; int y = 2; int z; z = x; x = y; y = z; Console.WriteLine(x); Console.WriteLine(y); } }