I have the following dictionary of cities with their associated longitudes and latitudes:
CityCoords = {
'Denvor': {'lat': 9, 'lon': 8.5},
'Chicago': {'lat': 12.0, 'lon': 10.2},
'Frisco': {'lat': 10, 'lon': 9.5},
'Boston': {'lat': 11.5, 'lon': 11.0},
}
How do I obtain the name of the cities with the highest latitude and lowest longitude?