#include<stdio.h>
#include<conio.h>
#include<math.h>
int
main()
{
num,x;
printf
(
"enter a number"
);
scanf
"%d"
,&num);
x=
sqrt
(num);
"\n\n your number is :%d"
,x);
getch;
return
0;
}