// // Created by light on 19-12-16. // #include "output_container.h" #include #include #include using namespace std; int main() { map mp{{1, 1}, {2, 4}, {3, 9}}; cout << mp << endl; vector> vv{{1, 1}, {2, 4}, {3, 9}}; cout << vv << endl; }