//Liga donde se puede aprender uso
//de JavaBook
// http://www.drcaffeine.com/student/aboutjavabook2.htm
// http://www.drcaffeine.com/javabook2Doc/index.html
import javabook.*;
class JavaBook1 {
   public static void main(String []  args) {
       MainWindow fr ;
       fr = new MainWindow("hola mundo");
       InputBox in ;
       in = new InputBox(fr);
  
       fr.show();
       int i = in.getInteger();
       MessageBox mensaje;
       mensaje = new MessageBox(fr);
       mensaje.show(i);
       OutputBox out ;
        out= new OutputBox(fr);       
       out.printLine(i);
       out.show();

   }
}





