using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello, What is your name?");
string name = Console.ReadLine();
Console.WriteLine("Hello " + name);
// display a message to the user asking them to enter their name
// declare a string variable called name. Set it equal to the results of reading a line from the console
// display a message welcoming the user using their name
}