using System;
Console.WriteLine("What kind of thing are you talking about?");
// String a should be the answer to the question above.
string a = Console.ReadLine();
Console.WriteLine("How would you describe it? Big? Azure? Tattered?");
// string b is also the answer to the question above.
string b = Console.ReadLine();
/* string c is the phrase
"of doom", and is later used */
string c = "of doom";
/* string d adds the word "3000", to the final name, which is
used after this. */
string d = "3000";
/* All of the code on the line below is
the combination of all the words already made. */
Console.WriteLine("The " + b + " " + a + " of " + c + " " + d + "!");