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

int main(void) {
	printf("0^0 = %f", pow(0, 0));
	return 0;
}
