#include<stdio.h>

void main()

{

    int i;

    for(i=0;i<=255;i++)

    {

        printf(“%d) %c\t”,i,i);

    }

}