//This file generated automatically from the MARIUS LP system, please do not edit.

public abstract class Cantante {

  public abstract void ejecutarNota();

 public void cantar() {
    boolean salir=false;
    int contador = 0;
    while(!salir) {
      ejecutarNota();
      contador++;
      if (contador == 10) { break;}
    }
 }

} //End of class Cantante
