#include <stdio.h>

main()
{
	char *line;
	while(line = yylex()){
		printf("%s", line);
	}
}

#ifdef AMIGA
yywrap ()
{
	return (1);
}
#endif
