#include<bits/stdc++.h> using namespace std; int main() { double a,b,ns; while(cin>>a>>b) { ns=pow(b,1/a); cout<<ns<<endl; } return 0; }
求大佬解答!!!