#include <iostream>
#include <string>
#include <map>
void printMap(std::map<int, int> mp) {
for (auto &s: mp) {
std::cout << s.first << ": " << s.second << '\n';
}
}
int main ()
{
std::map<int, int> mp;
for (int i = 0; i < 10; i++)
mp[i] = 0;
printMap(mp);
return 0;
}
/*
run:
0: 0
1: 0
2: 0
3: 0
4: 0
5: 0
6: 0
7: 0
8: 0
9: 0
*/