typedef struct Node { int data; int data2; struct Node *next; }Node,Linklist;