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

int main()
{
  double b = 4.0;
  double a = sqrt(b);

  printf("%lf\n", a);

  return 0;
}
