//*******************************************************************
//
//   Simple_IO_Test3.java          In Text          Application
//
//   Authors:  Lewis and Loftus
//
//   Classes:  Simple_IO_Test3
//
//*******************************************************************

import Simple_IO.Writer;

class Simple_IO_Test3 {

   //===========================================================
   //  Uses the Simple_IO package with an explicit class
   //  imported.
   //===========================================================
   public static void main (String[] args) throws java.io.IOException {

      int value = Simple_IO.Reader.read();
      String line = Simple_IO.Reader.read_line();

      Writer.write (value);
      Writer.write_line (line);

   }  // method main

}  // class Simple_IO_Test3


