if __name__=="__main__":
    string=input().strip()
    count_=len(set([char for char in string if 0<=ord(char)<=127]))
    print(count_)