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


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