#include <iostream>
using namespace std;

int &test()
{
	int a = 1337;
	return a;
}

int main()
{
	std::cout << test();
	return 0;
}