#include <iostream>
using namespace std;

struct xyz { 
	int i;
	int j;
};

void print(xyz arg)
{
	std::cout << arg.i << ' ' << arg.j << endl;
}

int main() {
	auto wtf = {.i = 1, .j = 2};
	print((struct xyz)wtf);
	return 0;
}