using System; public class Test { public static void Main() { int x = 42; int y = new int(); y = 43; Console.WriteLine(x); Console.WriteLine(y); } }