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

int main(void)
{
	double a, b;

	a = b = 3.0;
	printf("%f\n", pow(a, b));

	return 0;
}

