#include <stdio.h>
typedef struct{
	int x;
	int y;
}coordinate;
int main(void) {
coordinate me={1,2};

coordinate *shadow=&me;
shadow->x=2;
shadow->y=3;
printf("shadow(%d %d)\n",shadow->x,shadow->y);
	return 0;
}
