What does the following code snippet display if the user enters 20
at the keyboard?
int favorite;
cout << "Enter your favorite number: ";
cin >> favorite;
if (favorite == 13)
cout << "That my favorite number too!" << endl;
cout << "That's amazing!" << endl;
cout << "Great minds think alike!" << endl;