#include <cstdlib>
#include <ctime>
#include <iostream>
using namespace std;
int main()
{
    srand((unsigned)time(0));
    int options;
    int training = rand() % (3 + 1 - 1);
    cout << "Welcome to text-based Hot Rod!\n";
    cout << "You are Rod Kimble, stuntman extraordinaire. The only way to save\n";
    cout << "Frank's life will be to jump 15 buses to raise money for his conveniently\n";
    cout << "priced surgery for $50,000.\n";
    cout << "Options:\n";
    cout << "1. Training (lung strength, speed management, etc.)\n";
    cout << "2. Small-scale stunt work for money (jumping the public pool, etc.)\n";
    cout << "3. Jump 15 buses\n";
    cout << "4. Murder Frank in his weak state\n";
    cin >> options;
    switch (options)
    {
           case 1:
                {
                    

