#include <iostream>

using namespace std;

int main()
{
    while(1)
    {
        int *p = new int[10];
    }
    return 0;
}
