global using System; namespace ConsoleApp; class Program { static void Main(string[] args) { Console.WriteLine( Greeting + ", " + Title + Name + "!!"); } const string Greeting = "Hello"; const string Title = "Ms. "; const string Name = "Robot"; }