
public abstract class PersonList {
    // To count the number of people in this PersonList
	public abstract int totalNumber();

}

