#include #include #include #include using namespace std; set s; void hoge(int i, string S) { if (i == S.length()) { s.insert(S); return; } hoge(i + 1, S); reverse(S.begin() + i, S.end()); hoge(i + 1, S); } int main() { string S; cin >> S; hoge(0, S); cout << s.size() << endl; }