#include <iostream>
#include <map>
#include <string>

using namespace std;

int main ()
{
    map < int, map < const char, string > > mapa;
    mapa[0]['d']="12345";
    cout << mapa[0]['d'];
    
}