#include <stdio.h>
#include <math.h>

int main()
{
    float x = 0.0;

    printf( "%f\n", logf(x) );

    return 0;
}
