using System;
public class Program
{
public static void Main()
//decalre variable
string name;
//prompt the user to input their name
Console.WriteLine("Input name");
//have the program read the response
name = Console.ReadLine();
}