class Book {
private String title ;
private static int count = 0 ;
public Book (){
this ("Notitle" + count++) ;
}
public Book (String title){
this.title = title;
count++;
System.out.printf ("Total: " + count) ;
}
}