public int square( int n )
   {
   try
      {
      return n*n;
      }
   finally
      {
      return 0;
      }
   }