Given this code, what does the second Console.WriteLine print?struct Point { public int X; } var a = new Point { X = 5 }; var b = a; b.X = 99; Console.WriteLine(a.X); Console.WriteLine(b.X);