#include <iostream>

namespace
{
	bool foo = false;
}
	
bool foo = true;

int main()
{
	std::cout << foo << std::endl;
}

