#include #include int main() { std::unordered_map a; a[5] = 3; a[2]++; std::cout << a[2] << std::endl; }