#include <iostream>

#define public class utekator { public: utekator() { int *a = new int[100]; std::cout << "vasha pamyat' utekla" << std::endl; } };utekator pituh; public

class poteklo
{
public:
    poteklo()
    {

    }
    
    ~poteklo()
    {

    }

};

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