main()
{
int i=0;
clrscr();
while(i<255)
{
printf("%d---%c",i,i);
i++;
}
}