#ifndef _NODE_H_
#define _NODE_H_
typedef struct node {
	int first;
	struct node *rest;
	} node, *nodeptr;
#endif
