public static void Main()
Console.WriteLine("Hello Friends!");
Console.WriteLine("What's your name?");
string name = Console.ReadLine();
Console.WriteLine(name + ", I'm really impressed with you!");
Console.WriteLine("What have you done to impress me?");
string answer = Console.ReadLine();
Console.WriteLine("Wow, " + answer + " is really impressive!");
Console.WriteLine("It was nice chatting with you. Bye!");