#include <iostream>

int main () {

	int *p = NULL;
	
	std::cout << "Vou causar uma falha de segmentacao!" << std::endl;

	*p = 1;

	return 0;
}