import java.util.*; public class Kindergarden implements Iterable{ Set children = new HashSet(); public Iterator iterator(){ return children.iterator(); } public void enroll(Child c){ children.add( c ); } public void withdraw(Child c){ children.remove(c); } }