#include <iostream>
#include <vector>
using namespace std;

int main() {
	vector<bool> vec({false, false, true, false});
	
	bool &some_bool = vec[2];
	some_bool = false;
	cout << vec[2] << '\n';
	return 0;
}