#include <iostream>
#include <string>
usingnamespace std;
int main()
{
string userInput;
cout << "enter one of the following animals to find out what they think on a day to day basis. (dog, turkey, cat, penguin, or teenager)";
cin >> userInput;
if (userInput == "cat")
{
cout << "you will die and soon I will rule the world hahaha!";
}
elseif (userInput == "dog")
{
cout << "Squirrel";
}
elseif (userInput == "turkey")
{
cout << "Kill me!!!";
}
elseif (userInput == "penguin")
{
cout << "waddle waddle waddle";
}
elseif (userInput == "teenager")
{
cout << "Why is everybody looking at me : (";
}
return 0;
}