

public class Color
{
	private int r, g, b;

	public Color(int r, int g, int b)
	{
		this.r = r;
		this.g = g;
		this.b = b;
	}

	public int getR()
	{
		return r;
	}

	public int getG()
	{
		return g;
	}

	public int getB()
	{
		return b;
	}
}


public Class Line
{

	private Point start, end;


	public Line(Point start, Point end)
	{
		this.start = start;
		this.end = end;
	}

	public Point getStart()
	{
		return new Point(start.x; start.y);
	}

	public Point getEnd()
	{
		return new Point(end.x; end.y);
	}
}