no.2

#include <stdio.h>
#include <math.h>

int main() {
    double n, p;

    while (scanf("%lf%lf", &n, &p) != EOF) {
        printf("%.lf\n", pow(p, 1/n));
    }

    return 0;
}
原文地址:https://www.cnblogs.com/lovewzh/p/wangzehu.html