#include #include using namespace std;typedef map MAP_INT_STRING;typedef multimap MMAP_INT_STRING;int main (){ MMAP_INT_STRING mmapIntToString; mmapIntToString.insert (MMAP_INT_STRING::value_type (3, "Three")); mmapIntToString.insert (MMAP_INT_STRING::value_type (45, "Forty Five")); cout << endl << "The multimap contains " << mmapIntToString.size (); cout << " key-value pairs." << endl; cout << "The elements in the multimap are: " << endl; return 0;}