#include #include using namespace std; int main() { string carModel; cout << "What is the model of the car (Honda or Toyota)?\n"; cin >> carModel; if (carModel != "Honda" && carModel != "Toyota") { cerr << "Sorry, that wasn't a valid car model. Please enter either 'Honda' or 'Toyota'.\n"; return 1; } cout << "The available colors for the " << carModel << " are:\n"; if (carModel == "Honda") { cout << "1. Red\n"; cout << "2. Blue\n"; cout << "3. Black\n"; } else if (carModel == "Toyota") { cout << "1. White\n"; cout << "2. Silver\n"; cout << "3. Green\n"; } return 0; }