#include <stdio.h>  
#include <stdlib.h>
int main()
{
	int i;

	for (i = 0; i<=127; i++) 
	{
		printf("%2c ", i);
		if (i != 0) {
			if (i % 10 == 0) {
				printf("\n");
			}
		}
	}
	system("pause");
	return 0;
}