import java.util.*; public class Graph { private static int V; private static int E; private LinkedList adjList[]; public Graph(i