#include <stdio.h>
#include<stdlib.h>

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

int main(void) {
	// your code goes here
	foo * bar = malloc(sizeof(foo));
	*bar = (foo) {3,4};
	return 0;
}
