Answer:
#include <iostream>
using namespace std;
const int NRSTARS=50;
int main() {
cout << string(NRSTARS, '*') << endl;
cout << "Welcome!\nPlease choose a number from the following options:" << endl;
cout << "1. Play the MAD LIBS game!" << endl;
cout << "2. Play the CHOOSE YOUR OWN ADVENTURE game!" << endl;
cout << "3. Exit" << endl;
cout << string(NRSTARS, '*') << endl;
}