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

int main() {
    double n, e, result;
    scanf("%lf", &n);
    scanf("%lf", &e);
    result = pow(n, e);
    printf("%.4lf", result);
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: