#include <stdio.h>

int main() {

unsigned char x;

for (x=0;x<=254; x=x+1) {
   printf("%d: %c\n",x,x);
}


return 0;
}