#1906: point point point=... c++


tommybogi (tommy)


#include<iostream>
#include<cmath>
using namespace std;
int main(){
    int a, b, c, d, f;
    while(cin>>a>>b){
    c=1;
    for( ;b--; )
    c*=a; 
    cout<<c<<endl;
    }
    return 0;
   
    double d, f;
    while(cin>>d){
    f=sqrt(d);
    cout<<f<<endl;
    }
    return 0;
}