#include <iostream>
#include<map>
#include<string>
#include<vector>
#include <functional>
using namespace std;
void func(const std::map<string, int>& input) {
for(const auto&[key, value]: input)
{
std::cout<<key<<" --> "<<value<<std::endl;
}
}
int main()
{
func({{"m1", 1}, {"m2", 2}});
return 0;
}