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


int main() {
  double x;
  x = -1;
  printf("log(%lf) is %lf.\n",x,log(x));
  return 0;
}
