#include <stdio.h>

int main(void) {
	// your code goes here
	int i=37;
	printf("%f", *(float*)&i);
	return 0;
}
