//////////////////
// SoftAfzar.net
// All the best!
//////////////////
#include <iostream.h>
#include <conio.h>
int tavan(int x,int n)
{int y=1;
for(int i=1;i<=n;i++)
 y=y*x;
 return y;
}
void main()
{int p,t;
cout<<"Please enter an integer number: "
cin>>p>>;
cout<<"Enter power: "
cin>>t>>;
cout<<tavan(p,t);
getch();
}