#include <stdio.h>

struct safe_yoba* s1;
struct unsafe_yoba* s2;

int main(void) {
	s1 = s2;
	// your code goes here
	return 0;
}

