Please correct my code, why only two test case passes out of 4.
here is my code:- (i ignored hash)
(hash tag) include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
double c = sqrt(a);
cout<<fixed<<setprecision(b)<<c;
return 0;
}