import java.util.*;
public class BookDemo {
public static void main(String[] args) {
Book book = new Book();
book.add(new Chapter("Chapter 1"));
book.add(new Chapter("Chapter 2"));
book.add(new Chapter("Chapter 3"));
for(Chapter ch : book) {
System.out.println(ch);
}
}
}
class Book implements Iterable