Массивы и коллекции / Множества

#include <iostream>
#include <set>
using namespace std;

set<int> intSet {123};
set<string> strSet { "one""two""three" };

for (int i : intSet) cout << i << "; ";
cout << endl;
for (string s : strSet) cout << s << "; "