///GH: Reverse, Add, Then Sort sequence

#include "std_lib_facilities.h"
#include "Rats.h"

int main() {
    Rats r(1234);
    cout << "\nWe've created a Rats with seed " << r.seed;
    cout << "\nHere's the first 101 terms of the sequence: "
         << endl;
    r.showRats();
}
