class IntListNode {
   int data;
   IntListNode next;
}


