#include <stdio.h>
#include <math.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>

int main()
{
 int  i;
 unsigned char  data[5000];
 FILE *inf;
 char filename[20];

 printf("Input the file to be read: \n");
 scanf("%s",&filename);
 printf("The file being read is %s  \n",filename);
 inf=fopen(filename,"r");
 for (i=1; i<200; i++)
   fscanf(inf,"%c",&data[i]); 
 for (i=1; i<70; i++)
  printf("%d   %u  \n",i,data[i]);
 return (0);
}
