how to iterate from second element in map c++

for (auto it = std::next(map.begin()); it != map.end(); ++it) {
    // iterate through the map starting from the second element
    // 'it' is an iterator pointing to the current key-value pair
}