using System.Collections.Generic;
public static void Main(string[] args)
string employeeIDResponse = string.Empty;
Dictionary<int, string> employees = new Dictionary<int, string>();
Console.WriteLine("Please enter your employee id: ");
employeeIDResponse = Console.ReadLine();
int.TryParse(employeeIDResponse, out int employeeID);
if (employeeID > 0 && employeeID <= 3)
Console.WriteLine($"Hello { employees[employeeID] }");
Console.WriteLine("Please enter a valid employee id number. ");