using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello, this is chatbot2000. What's your name?");
var name = Console.ReadLine(); // Opens up a prompt for typing below, and saves the input to a variable
Console.WriteLine($"Hello, {name}!");
}