#include <math.h>
double findSqrt(int n ) 
{
    return sqrtl(n);
}