#include <stdio.h>
#include <stdlib.h>


typedef struct	{
	char *tag;
	int	value;
	}	jjj;


main(int argc, char **argv)
{
jjj *p;
jjj xyz[100];

jjj	**pp;

pp = malloc(atoi(argv[1])*sizeof(jjj));



free(pp);


}
