import java.io.*; public class DVR{ static int graph[][]; static int via[][]; static int rt[][]; static int v; static int e; public static void main(String args[]) throws IOException{ BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); System.out.println("please enter the number of vertices:"); v=Integer.parseInt(br.readLine()); System.out.println("please enter the number of edges:"); e=Integer.parseInt(br.readLine()); graph=new int[v][v]; via=new int[v][v]; rt=new int[v][v]; for(int i=0;i