using System;
public class Program
{
public static void Main()
//Luis Enrique
string name ; //declare the variable to save the name of the user
Console.WriteLine("Hello! ");
Console.WriteLine("What´s your name? ");
name = Console.ReadLine(); // save user´s answerin variable "name"
Console.WriteLine("nice to meet you " + name + " ! ");
}