public class Point
{
	public int x = 0;
	public int y = 0;
	
	//default constructor
	public Point()
	{
		
	}
	
	//specific constructor
	public Point(int newX, int newY)
	{
		x = newX;
		y = newY;
	}
}