UVa 113 – Power of Cryptography


/*
User ID: turing_13
Link : http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=24&page=show_problem&problem=49
*/

#include <iostream>
#include <cstdio>
#include <cmath>

using namespace std;

int main()
{
    double n,p;
    while(scanf("%lf %lf", &n,&p)==2)
    {
        printf("%.lf\n", pow(p,1/n));
    }
    return 0;
}

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments