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