Answer:
<em>Written in Python</em>
inputt = input()
if inputt == "SPATHIPHYLLUM":
print("Yes - Spathiphyllum is the best plant ever!")
elif inputt == "spathiphyllum":
print("No, I want a big Spathiphyllum!")
else:
print("Spathiphyllum! Not"+ inputt+"!")
Explanation:
This line gets user input
inputt = input()
This line checks if input is uppercase SPATHIPHYLLUM and executes the corresponding print statement, if true
if inputt == "SPATHIPHYLLUM":
print("Yes - Spathiphyllum is the best plant ever!")
This line checks if input is uppercase spathiphyllum and executes the corresponding print statement, if true
elif inputt == "spathiphyllum":
print("No, I want a big Spathiphyllum!")
If user input is not upper or lower case of Spathiphyllum, the following if condition is considered
else:
print("Spathiphyllum! Not"+ inputt+"!")