#include <iostream>
using namespace std;

int main() {
	int* n(nullptr);
	bool b = n;
	if(!b)
		std::cout << "false" << std::endl;
	return 0;
}