Tuesday, October 4, 2011

uva : 113 - Power of Cryptography

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

No comments:

Post a Comment