#include <iostream>
using namespace std;

int main() {
	int z = 0;
	const int const& a= z;
	return 0;
}