// Written by Barry Soroka
//
// A simple example of the required Java style.
//
import java.io.*;
////////////////////////////////////////////////////////////////////////////////
class Foo
{
//------------------------------------------------------------------------------
   public static void main ( String [] args ) throws Exception
   {
      System.out.println("hello");
   }
//------------------------------------------------------------------------------
} // end class Foo
////////////////////////////////////////////////////////////////////////////////

