#include <iostream>

struct s1{
	int x, y, z;
};

struct s2{
	int x, y, z;
};

int main(){
	s1 s{};
	((s2&)s).z = 10;
	std::cout << s.z << '\n';
}