#include <stdio.h>
/*
* Produce the entire character set, from 0x00 thru 0xFF.
*/
main()
{	int i;
	for (i=0; i<256; i++)
		putchar(i);
	exit(0);
}
