#include <iostream>
#include <string>
using namespace std;

int main()
{
	string color="";
	cout<<"what is the color of the seed? please either enter blue or red!: \n";
	cin >> color;
	
	int temp;
	cout<<"what is the temperture? :\n";
	cin >> temp;
	
	string soil="";
	cout<<"what kind of the soil? please either enter wet or dry! :\n";
	cin >> soil;	

	if (color == "red")
	{
		if (temp >= 75)
		{
			if (soil=="wet")
			{
				cout <<"you get yourself a sunfolower :\n";
			}
			else if (soil=="dry")
			{
				cout <<"you get yourself a dendelion :\n";
			}
		}
		else
		{
			cout <<"Shit, you have a mushroom now! :\n";
		}
	}
	
	else if (color=="blue")
	{
		if (temp >= 60 && temp <= 70)
		{
			if (soil=="wet")
			{
				cout <<"you get yourself a dendelion :\n";
			}
			else if(soil=="dry")
			{
				cout <<"you get yourself a sunfolower :\n";
			}
		}
		else{
			cout <<"Shit, you have a mushroom now! :\n";
		}
	
	}
	
	return 0;

}
