// // Created by light on 19-12-16. // #include #include #include #include #include "output_container.h" 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; pair p{1, 2}; cout << p << endl; set s{1, 2, 3}; cout << s << endl; vector v{'a', 'b'}; cout << v << endl; set vs{"a", "b"}; cout << vs << endl; map mm{ {1, "23"}, {2, "234hi"} }; cout << mm << endl; }