#include <iostream>
#include <map>
using namespace std;
int main() {
map<string, int, greater<string>> people = { {"Bill", 19}, {"Steve", 32}, {"Elon", 26} };
for (auto pair : people) {
cout << pair.first << " 的年龄是: " << pair.second << "\n";
}
return 0;