#include <algorithm>

bool comp(int x, int y)
{
    return x < y;
}

#define SIZE 1000000

int main()
{
    int arr[SIZE];
    int count = 10;
    while(count--)
    {
        std::sort(arr, arr + SIZE, comp);
    }
}