import java.io.* ;

class Cat {

  static int dump(BufferedReader b) throws IOException {
    String line ;
    int nwords = 0 ;

    line =  b.readLine() ;
    while (line != null) {
      System.out.println(line) ;
      line = b.readLine() ;
      nwords++ ;
    }
    return nwords ;
  }

  public static void main(String [] argv) {
    Options o = new Options(argv) ;
    try {
      BufferedReader b = new BufferedReader (new FileReader (o.dico)) ;//$\label{21}$
      int nwords = dump(b) ;
      b.close() ;
      if (o.verbose > 0) {
        System.err.println("Le dictionnaire " + o.dico +
                           " contient " + nwords + " mots") ;
      }
    } catch (IOException e) {
      System.err.println(e.getMessage()) ;
      System.exit(2) ;
    }
  }
}

