using System.Collections.Generic;
public static void Main()
var cities = new Dictionary<string, string>(){
foreach(var pair in cities) {
ArgumentNullException.ThrowIfNull(pair.Value);
Console.WriteLine("Country: " + pair.Key + ", City:" + pair.Value);
} catch(System.ArgumentNullException) {
Console.WriteLine("Could not find city for this country: " + pair.Key);