class Point
{
int x;
int y;
public:


Point(int _x = 0 , int _y = 0):x(_x), y(_y) { }. <-- 이 부분을 모르겠뜸. 생성자 같은 느낌인데 첨봄


void Print() const { cout << x << ',' << y << endl; }
const Point operator+(const Point& arg) const
{
Point pt;

pt.x = this->x + arg.x;
pt.y = this->y + arg.y;

return pt;
}
};