using System;
public class Program
{
public static void Main()
// Write a program that asks the user for their name and then
// prints the message “Hello, <name>, nice to meet you!”
// Be sure to use appropriate variable names
string name;
Console.WriteLine("What is your name?");
name = Console.ReadLine();
Console.WriteLine("Hello, " + name + ", nice to meet you!");
}