

//abstract class Ordenador {

class Ordenador {

  protected String procesador;
  protected double velocidad;
  protected int memoria;
  
//  abstract public void imprimir(); 
  
  public Ordenador(String procesador, 
                   double velocidad) {
	 this.procesador = procesador;
	 this.velocidad = velocidad;
  }	 
     
}
