#include <iostream>
class Test
{
	int s=9;
	public:
	int get_s()
	{
		return s;
	}
};
int main()
{
	Test s;
	Test& t{s};	
	std::cout<<t.get_s();
} 