public class Gil
{
  // +--------------+------------------------------------------------------
  // | Fields |
  // +--------------+
  int x;

  // +--------------+------------------------------------------------------
  // | Constructors |
  // +--------------+

  public Gil(int initial_x)
  {
    this.x  = initial_x;
  } // Gil(int)

  // +--------------+------------------------------------------------------
  // | Methods |
  // +--------------+
  public String toString() {
    return "x = " + this.x;
  }

  // +--------------+------------------------------------------------------
  // | Main |
  // +--------------+
  public static void main(String[] args)
  {
    Gil futuregrinnellstudent = new Gil();
    System.out.println(futuregrinnellstudent);
  }
} // class Gil
