class LinkedList {
    public Object obj;
    public LinkedList next;
}
