using namespace std;
int main() {
map<string, int> people = { {"John", 32}, {"Adele", 45}, {"Bo", 29} };
// Loop through the map with an iterator
for (auto it = people.begin(); it != people.end(); ++it) {
cout << it->first << " is: " << it->second << "\n";
}
return 0;
}