#include <iostream>
using namespace std;
class Point2D {
public:
Point2D(int _x, int _y): x(_x), y(_y)
2022-07-31