#include <iostream>
using namespace std;

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

	return move(i);
}

int main() { }