using System.Collections.Generic;
public static void Main()
var city = new Dictionary<string, Dictionary<string, int>>();
city ["Sofia"] = new Dictionary<string, int>
{"Vasil Levski stadium", 6}
city ["Plovdiv"] = new Dictionary<string, int>
foreach (var student in city)
Console.WriteLine($"city");
foreach (var subject in student.Value)
Console.WriteLine($" {subject.Key}: {subject.Value}");