#include<stdio.h>
#include<math.h>
  int main() 
{
float a,r,n;
printf("Please, Enter a number (base):"); 
scanf("%f",&n); 
 printf("\nPlease, Enter it\'s power (exponent):");
 scanf("%f",&a);
 r=pow(n,a);
 printf("\nThe result of %f^%f = %f ",n,a,r); 
return 0;
} 
