#include <iostream>
#include <stdio.h>

int main() {
	// your code goes here
	float thing = -5.0f;
	unsigned int foo = thing;
	printf("%x",foo);
	return 0;
}