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

public class ClienteBridge {
    
    public static void main(String [] args) {
        Lector lect=null ;
        if (args.length > 0) {
            if (args[0].equals("T") ) {
                lect = new Lector();
            } else if (args[0].equals("R") ){
                lect = new LectorRemoto();
            }
            if (lect!=null) {
                System.out.println(lect.leer());
            }
        } else {
            System.out.println("Indicar opcion T o R");
        }
    }
    
} //End of class ClienteBridge
