#include <iostream>
#include <algorithm>
#include <unordered_map>
using namespace std;
int main()
{
unordered_map<int, int> hash;
hash[1] = 2;
hash[3] = 6;
for(auto e : hash) cout << e.first << " " << e.second << endl;
}
#include <iostream>
#include <algorithm>
#include <unordered_map>
using namespace std;
int main()
{
unordered_map<int, int> hash;
hash[1] = 2;
hash[3] = 6;
for(auto e : hash) cout << e.first << " " << e.second << endl;
}