Generates random integer data with given parameters and writes to a file vertically.
Default Output file: "data.txt"
const string FILENAME = "data.txt"; //name of file to write to
const int MIN = 1; //[inclusive] min range
const int MAX = 200; //[inclusive] max range (MAX = 2147483647)
const int COUNT = 100; //number of integers to be generated