
/** from The Java Programming Language, Arnold, Gosling and Holmes
 **/

import java.net.* ;
import java.io.* ;

public class WriteOutput {

   public static void main(String[] args) 
      throws IOException
   {
      String host = args[0] ;
      Socket sock = new Socket( host, AcceptInput.PORT ) ;
      OutputStream out = sock.getOutputStream() ;
      int ch ;
      while ( (ch = System.in.read()) != -1 ) 
         out.write(ch) ;
      out.close() ;
   }
}

