<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">public class LeeDatos {
  public static void main(String[] args) {
     //Leer un numero entero
     int i;
     i = Consola.readInt();
     String msg;
     msg= Consola.readLine();
     System.out.println(i);
     System.out.println(msg);
  }
}</pre></body></html>