Consider that you have the following statements:
string str1, str2;
cin >> str1 >> str2;
if (str1 == str2)
cout << str1 + '!' << endl;
else if (str1 > str2)
cout << str1 + " > " + str2 << endl;
else
cout << str1 + " < " + str2 << endl;
Provide answer to the following questions.
a) Explain the output if input is diamond?
b) State the output if input is diamond gold?
c) Sate the output if input is silver gold?