import java.io.*;

public class AddressBookTestMain
{
	public static void main(String [] args) throws IOException
	{
		AddressBook book = new AddressBook();
		Contact c1 = new Contact("Mr.", "Bui", "867-5309");
		Contact c2 = new Contact("John", "Doe", "333-3333");
		book.addContact(c1);
		book.addContact(c2);
		book.readFromFile("input.txt");
		book.print();
		book.printToFile("output.txt");
	}
}