#include <iostream>
#include <map>
using namespace std;
int main() {
map<string, int> d = {
{"a", 1},
{"b", 2},
{"c", 3}
};
std::cout << "Hello world!" << std::endl;
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: