#include <iostream>
using namespace std;

int&& f()
{
	int i = 0;

	return i;
}

int main() { }