#include <stdio.h>

int main(void) {
	// your code goes here
	int x;
	x = 512;
	char *c = (char*)&x;
	c[0]=3;
	c[1]=1;
	printf("%d",x);
	return 0;
}
