class Cell
  {
  Object data;
  Cell next;


  static void link(Cell L, Cell M)
    {
    Cell temp = L.next;

    L.next = M.next;

    M.next = temp;
    }

  }