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

int main(void) {
	printf("%lf\n", pow(1.0, 2.0));
	printf("%f\n", pow(1.0, 2.0));
	return 0;
}
