int g(char*b){//
    FILE*f=fopen(b,"r");
    fseek(f,0,SEEK_END);
    int i=ftell(f);
    return i;
}