S = input() st = set() def dfs(s, t): if len(s) == 0: st.add(t) return dfs(s[1:], t + s[0]) dfs(s[:len(s) - 1], t + s[-1]) dfs(S, "") print(len(st))