// Online C# Editor for free
// Write, Edit and Run your C# code using C# Online Compiler
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
public class HelloWorld
{
public 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}");
}
}
}