#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
void Check_file(char *filepath)
{
        if(access( filepath, F_OK ) == -1 ) {
                printf("\nUnable to access : %s\n",filepath);

                exit(1);
        }
        return;
}
int main () { return 0; }