#include <stdio.h>

struct foo
{
	int a, b;
};

struct foo foo()
{
	struct foo a;
	return a;
}

int main(void) {
	foo();

	// your code goes here
	return 0;
}
