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

void main(void) {
  float x;
  
  printf("Enter a number\n");
  scanf("%f",&x);

  printf("The square root of %f is %f\n",x,sqrt(x));
}

