#include <iostream>
#include <memory.h>

int main()
{
	unsigned dw = 0x4D91A2B4;
    float f;
    memcpy(&f, &dw, 4);
	std::cout << f;
	return 0;
}