#include <iostream>
using namespace std;

class What
{
	private:
		int & ohNo;
};

int main() {
	What what;
	return 0;
}