首页 > 代码库 > poj2109

poj2109

#include <stdio.h>
#include <math.h>
double n,p;
int t;
int main()
{
while(~scanf("%lf%lf",&n,&p))
{
t=int (pow(p,1/n) + 0.5);
printf("%d\n",t);
}
return 0;
}