#include #include #include using namespace std; int main(int argc, char *argv[]) { long a[65300]; srand(time(NULL)); long random=rand(); while (true) for (int q=0;q<65300;q++) a[q]=pow(random,q); return EXIT_SUCCESS; }