int main(int argc, char const *argv[]) {
	Solution sol;
	cout << sol.anagram("aabb", "bbaa") << endl;
	return 0;
}