#include <stdio.h>

int main(void) {
	union {
		int i;
		float f;
	} test;
	test.i = 1078530010;
	printf("%f", test.f);
	return 0;
}
