#include <iostream>
using namespace std;

int &something() {
	int i = 5, &j = i;
	return j;
}
	

int main() {
	
	int &k = something();
	std::cout << k << endl;
	// your code goes here
	return 0;
}