public class CarreraBichos{
    public static void main(String args[]){
        OtraFormaHilos o1=new OtraFormaHilos("Cigala", true);
        OtraFormaHilos o2=new OtraFormaHilos("Cangrejo", false);
        // Convertimos al Runnable en Thread (util para herencia)
        Thread t1=new Thread(o1);
        Thread t2=new Thread(o2);
        // Y a jugarrrrrrrrr
        t1.start();
        t2.start();
    }
}
