public static void Main()
Console.WriteLine("Hello there! What's your name?");
Console.WriteLine("Welcome to our website, "+name+"!");
Console.WriteLine("We would like to introduce you to our features!");
Console.WriteLine("Do you agree to recive a short tutorial on how to use our website? (y/n)");
string answer=getAnswer();
Console.WriteLine("Cool! You'll be redirected in a moment.");
Console.WriteLine("Cool!... I guess. So you can just go ahead and browse our server freely now. Sorry for annoying you :)");
public static string getName(){
string name = string.Format(Console.ReadLine());
public static string getAnswer(){
string answer = string.Format(Console.ReadLine());