// Reads a capacitated, directed graph from a file and // then uses Sedgewick's code for Ford-Fulkerson network flows import java.util.Scanner; public class netflowFile { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int v=sc.nextInt(); int e=sc.nextInt(); Network G1=new Network(v),G2=new Network(v); for (int i=0;i