using System;
public class Program
{
static string myName = "";
public static void Main()
Console.Write("what is your name:");
myName = Console.ReadLine();
Greeting();
}
public static void Greeting()
Console.WriteLine("Hello good evening and welcome. " + myName + ".");