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

int main() {
	int c = 0;
	while(c < 256) {
		printf("%c\n",c);
		c++;
	}
	return 0;
}
