/* 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; }
Subscribe
Login
0 Comments