#ifndef POINT_HPP
#define POINT_HPP
#include <iostream>

class Point() {
private: 
	double x;
	double y;

public: 
	Point();
	Point(double xVal, double yVal);

	//getters
	double getX() const;
	double getY() const;

	//setters
	void setX(double xVal);
	void setY(double yVal);

	//input output
	void input();
	void output() const;	
};




#endif
