#ifndef POINT_H
#define POINT_H

class point {
  private:
	int x, y;

  public:
	point();
	point(int x, int y);
	int getx();
	int gety();
	void setx(int n);
	void sety(int n);
	double dist(point a);
};

#endif
