// export class Point { // constructor(x, y) { // this.x = x; // this.y = y; // } // a() { // return '(' + this.x + ', ' + this.y + ')'; // } // }