code:
#include<bits/stdc++.h>
using namespace std;
main()
{
    map<int, string>map1, map2;
    map1.insert(make_pair(1,"Sri Lanka"));
    map1.insert(make_pair(2,"India"));
    map1.insert(make_pair(3,"Bangladesh"));
    cout<<"Map1 size:"<<map1.size()<<endl;
    cout<<"Map2 size:"<<map2.size()<<endl;
    return 0;
}
Everytime I run map, error message will say....

What should I do?
