#include<stdio.h>

#include<math.h>

void main()

{

    int x,sq;

    printf("\nEnter The Number : ");

    scanf("%d",&x);

    sq=sqrt(x);

    printf("\nSquare Root of %d = %d",x,sq);

}