public static void Main()
Console.WriteLine("Welcome! My name is [name]!");
Console.WriteLine("I heard that someone you care about is in need of some support, so I'm here to help!");
Console.WriteLine("\n[disclaimer]");
Console.WriteLine("\nType anything and/or press enter to begin.");
Console.WriteLine("Let's begin!");
Console.WriteLine("\nWhat is your name?");
string A = Console.ReadLine();
Console.WriteLine("Hi, " + A + "!\n\nWhat is the name of your person who needs some support?");
string B = Console.ReadLine();
Console.WriteLine("Thank you for helping " + B + ", " + A + ", as they are in a state where they may need help.");
Console.WriteLine("This will help you best support them.");
Console.WriteLine("\nYou will interact as " + B + ", and I will interact as you, " + A + ".");
Console.WriteLine("Type anything and/or press enter to begin.");