using System; public struct point { int x, y; public point(int x_, int y_) { x = x_; y = y_; } public void print() { Console.WriteLine(x); Console.WriteLine(y); } } class c2002 { public static void Main() { point p1 = new point(); point p2 = new point(10,10); Console.Write("p1 "); p1.print(); Console.Write("p2 "); p2.print(); } }//