public class Cd_graph
{
	public Adj first;
	public Cd_graph(Adj first)
	{
		this.first = first;	
	}
}
		
