// CSID of group member 1: a0a0a
// CSID of group member 2: b0b0b
// CSID of group member 3: c0c0c
//
// The first three lines of this file will be processed by a script.
// If there are fewer than three group members, you can delete some
// of the CSIDs.
//
// Just in case, you can put the group member's names here too.
// These lines won't be processed by a script. For example,
// Name of Group Member 1: Eric Lehman
// Name of Group Member 2: Tom Leighton
// Name of Group Member 3: Albert Meyer
import java.io.*; 
public class GA { 

	String ReadFromFile(String name) throws Exception {
		File file = new File(name); 
		BufferedReader br = new BufferedReader(new FileReader(file)); 
		return br.readLine();
	}

	public void Main(String[] args) throws Exception {
		if (args.length < 2) {
			System.out.println("Error: Need two filenames");
			return;
		}
		String A = ReadFromFile(args[0]);
		String B = ReadFromFile(args[1]);
		// Todo
	}

	public static void main(String[] args) throws Exception { 
		GA obj = new GA();
		obj.Main(args);
	}
} 
