using System; public class Test { public static void Main() { int x =3; int y =4; int z; Console.WriteLine(x); Console.WriteLine(y); z = x; //Zwischenspeicher x = y; //y auf x übertragen y = z;//x auf y übertragten Console.WriteLine(x); Console.WriteLine(y); } }