#include "RandomInt.h"

int main()
{
  RandomInt randInt(1, 100);

  for (int i = 0; i < 10; i++)
    cout << randInt.Generate() << endl;
}

