string re = ask("How do you usally repond when somebody insults you","I litterally kill them.","I repeatedly insult them back/ start to yell at them.","I physically harm them.","I think about responding with a smile/ saying nothing, but my anger gets the best of me and I respond in a bad way", "I insult them back.", "I respond with a smile or say nothing");
if(re == "A" || re == "a"){
else if(re == "B" || re == "b"){
else if(re == "C" || re == "c"){
else if(re == "D" || re == "d"){
else if(re == "E" || re == "e"){
else if(re == "F" || re == "f"){
p("That is not a valid response");
string ask(string inq, string jigoku, string gaki, string beast, string asura, string human, string tengoku){
Console.WriteLine(inq + "?\n\nA. " + jigoku + "\nB. " + gaki + "\nC. " + beast + "\nD. " + asura + "\nE. " + human + "\nF. " + tengoku + "\n");
return Console.ReadLine();
Console.WriteLine(phrase);