#include <stdio.h>
#include <math.h>

main()
{
int a, b, x;

printf("input : ";
scanf("%d%d", &a, &b);

x = pow(a, b);

printf("x = %d\n", x);
}

+ Recent posts