#include <iostream>
using namespace std;

int main() {
	int* yoba = NULL;
	int& peka = *yoba;
	
	std::cout << peka << std::endl;
	
	return 0;
}