 
  
   
  
   
  
  /ip address add address=192.168.73.101/24 interface=ether1
/ip route add dst-address=0.0.0.0/0 gateway=192.168.73.1 distance=1
/ip dns set servers=10.99.99.2,10.99.99.6 
  
   
  
   
  
   
  
  можете просто писать исходники в 866 кодировке, тогда в консоли "по умолчанию" кирилица у вас будет выводиться
 
  
   
  
   
  
   
  
  Console.WriteLine("Если хотите выйти введите exit: "); 
  
   
  
   
  
  static void Main(string[] args)
        {
            Dictionary<string, int> ageDictionary = new Dictionary<string, int>();
            string stopWord = "exit";
            
            do
            {
                Console.WriteLine("Введите имя:");
                string name = Console.ReadLine();
                Console.WriteLine("Введите возраст:");
                int age = Convert.ToInt32(Console.ReadLine());
                ageDictionary.Add(name, age);
            }
            while (Console.ReadLine() == stopWord);
            foreach (var pair in ageDictionary)
            {
                Console.WriteLine($"Имя: {pair.Key}, Возраст: {pair.Value}");
            }
        }
после if есть /usr/sbin, а после else нету.
Добавил в строку после else и применил
source /etc/profile