#include <stdio.h>

typedef struct{
	int x;
	int y;
}Cordinate;

int main(void) {
	Cordinate me={1,2};
	Cordinate *shadow=&me;
	shadow->x=2;
	shadow->y=3;
	printf("%d,%d",shadow->x,shadow->y);
	return 0;
}
