#include <iostream>
#include <fstream>
#include <stdlib.h>

using namespace std;

int main ()
{
  ofstream fout;
  string fname, rand_word;
  fname = "input.dat";
  int temp_int1, temp_int2;
  char temp_char;
  
  fout.open(fname.c_str());
  for(int j = 0; j < 1000; j++)
  {
    temp_int1 = rand();
    fout << temp_int1 << " ";
  } 
    return 0;
}

