#include <iostream>
#include <set>
#include <string>
#include <unordered_set>

int main()
{
	std::set<std::string> a1 {"a", "b"};
	std::set<std::string> b1 {"b", "a"};
	std::cout << std::boolalpha << (a1 == b1) << std::endl;

	std::unordered_set<std::string> a2 {"a", "b"};
	std::unordered_set<std::string> b2 {"b", "a"};
	std::cout << std::boolalpha << (a2 == b2) << std::endl;
}
