#include <iostream>

struct functionReturn
{
	int a;
	int b;
	int c;
	int d;
};

struct functionReturn funct()
{
	return {1,2,3,4};
}


int main() {
	// your code goes here
	
	struct functionReturn ret = funct();
	
	std::cout << ret.a << ' ' << ret.b << ' ' << ret.c << ' ' << ret.d;
	
	
	return 0;
}