#include #include using namespace std; void main() { srand(time(0)); for(int i = 0; i < 1000; i++) { cout << rand() << endl; } }