struct coords
{
	int x, y;
};

int main()
{
	struct coords my_coords = { 0, 1 };
}