s = input() def cn_str(s): d = {} for i in s: d[i] =1 if i not in d else d[i]+1 return len(d.ke...