#include <map> int main(){ //new map std::map <int,int> myMap; myMap[0] = 1; myMap[1] = 2; myMap[2] = 3; myMap[3] = 4; }