#include #include #include int main() { std::map, int> testMap; testMap[{1, 1}] = 2; std::cout << testMap.at({1, 1}) << std::endl; return 0; }