#include <stdio.h>

int main(void) {
	// your code goes here
	int a = atoi("2231734432");
	printf("%#x\n", a);
	return 0;
}
