#include <stdio.h>

int main(void) {
	// your code goes here
    int x=47,*p;
    p=&x;
    printf("x的值是%d,x的地址是%p\n",x,&x);
	return 0;
}
