1 using System;
2
3 public class Point
4 {
5 public inline constexpr nothrow Point() : x(0), y(0)
6 {
7 }
8 public inline constexpr nothrow Point(int x_, int y_) : x(x_), y(y_)
9 {
10 }
11 public inline constexpr nothrow int X() const
12 {
13 return x;
14 }
15 public inline constexpr nothrow int Y() const
16 {
17 return y;
18 }
19 private int x;
20 private int y;
21 }
22
23 public const Point[] points =
;
24
25 void main()
26 {
27 long n = points.Length();
28 for (long i = 0; i < n; ++i;)
29 {
30 int x = points[i].X();
31 int y = points[i].Y();
32 Console.Out() << "(" << x << ", " << y << ")" << endl();
33 }
34 }