/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author felix
 */
public class Ciudadano extends Humano{
    protected String documento; 
    Ciudadano(String unNombre, String unApellido, 
            String unDocumento) {
        super(unNombre, unApellido);
        documento = unDocumento;
    }
    
    @Override
    String Identificacion(){
        return super.Identificacion() + " " + documento;
        
    }

}
