You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
283 B
C++

#include <cstdio>
#include <cmath>
using namespace std;
int main()
{
double n;
int m;
while(~scanf("%lf%d",&n,&m))
{
double ans=0;
for(int i=0;i<m;i++)
ans+=n,n=sqrt(n);
printf("%.2lf\n",ans);
}
return 0;
}