#include <stdio.h> 

int main() {

 unsigned char i;

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

 return 0;
}