#include using namespace std; int main() { char choice{' '}; cout << "Enter your choice " ; cin >> choice; switch(choice) { case 'A': case 'a': cout << " The ant says A" << endl; break; case 'b': cout << "The bee says B" << endl; break; default: cout << " I don't know what says " << choice << endl; } return 0; }