#include <iostream>
using namespace std;

#define public public: void operator delete(void *pituh) {std::cout << "PSHHH PSHHH YOBA VASHA PAMYAT UTEKLA KAK SLISHNO" << endl;}; public

class poteklo
{
public:
	poteklo() :
		TheAnswer(42)
	{
		;
	}
	
private:
    int TheAnswer;
};

int main(int argc, char *argv[])
{
    for (int i = 0; i < 10; i++) {
        poteklo *uteklo = new poteklo;
        delete uteklo;
    }
    
    return 0;
}