using System;
public class Program
{
public static void Main()
string name; //Declare the variable to save the name of the user
Console.WriteLine("Hello, whats your name? ");
name = Console.ReadLine(); //Save user´s answer in variable "name"
Console.WriteLine("Nice to meet you, " + name + "!");
}