#include <stdio.h>

int main( void )
{
    int *p;

	printf( "%x ", (long unsigned) p );
	p++;
	printf( "%x\n", (long unsigned)p );

	return 0;
}