#include #include using namespace std; int main(){ map a; a[2] = a.size(); a.insert(make_pair(3, a.size())); printf("%d %d\n",a[2], a[3]); }