#include <stdio.h>

int main(void) {
	// your code goes here
//	float a = 3F;
	float a = 0.50000002F * 3.F;
	float b = 0.50000002  * 3.F;
	printf("%.20f\n", a);
	printf("%.20f\n", b);
	return 0;
}
