// outputfile.cc   Write some random numbers to an output file
// P. Conrad   CISC181  03/12/2007

#include <iostream>
#include <fstream>   // if writing to a file
using namespace std;

int main()
{
  srand(0xFFFFB4FC); // some seed we came up with

  // another way: srand(time(0));


  return 0;
}

