C Language
#include<stdio.h>
#include<conio.h>
#include<math.h>
{
int a, b;
clrscr();
printf("Enter any number");
scanf("%d", &a);
b=sqrt(a);
printf ("Square Root=%d",b);
getch();
}
/*OUTPUT*/
Enter any number 81
Square Root = 9