#ifndef POINT_CPP
#define POINT_CPP
#include "point.hpp"
#include <iostream>
using namespace std;


Point::Point():Point(0,0){}
Point::Point(double xVal,double yVal) : X(xVal), Y(yVal) {}

double Point::getX() const {
	return x;
	}

double Point::getY() const {
	return y;
	}

void Point::setX(double xVal){
	x=xVal;
	}

void Point::setY(double yVal){
	y=yVal;
	}

void Point::output() const {
	cout << "(" << x << "," <<y <<")";
	}

void Point::input(){
	cout << "Enter x: ";
	cin >> x;
	cout << "Enter y: ";
	cin >>y;

	}


#endif
