#include<math.h>
#include<stdio.h>
void main()
{
    long int a,b,c;
    printf("\nenter the value of a & b:> ");
    scanf("%d %d",&a,&b);
    c=pow(a,b);
    printf("The calculated result is %d\n",c);

}
