#include <stdio.h>

int main(void)
{
	const int i = 10;
	int *k = (int*)&i;
	printf("%i\n", *k);
	return 0;
}
