public class AddressBookLLTest 
{
	public static void main(String[] args) 
	{
		AddressBook book = new AddressBook();
		
		//adds 1000 contacts
		for(int i = 0; i < 1000; i++)
		{
			Contact newContact = new Contact("sampleFN"+Integer.toString(i), "sampleLN"+Integer.toString(i), Integer.toString(i), Integer.toString(i));
			book.add(newContact);
		}

		//remove the first 100
		for(int i = 0; i < 100; i++)
		{
			book.remove("sampleFN"+Integer.toString(i), "sampleLN"+Integer.toString(i));
		}
		//remove the middle 200
		for(int i = 400; i < 600; i++)
		{
			book.remove("sampleFN"+Integer.toString(i), "sampleLN"+Integer.toString(i));
		}
		//remove the last 100
		for(int i = 900; i < 1000; i++)
		{
			book.remove("sampleFN"+Integer.toString(i), "sampleLN"+Integer.toString(i));
		}
		book.print();
	}
}