import java.util.HashSet;
import java.util.Scanner;

/**

  • @Author: zhouLai
  • @Date: 2020/3/24 21:22
  • @Version 1.0
  • /
    public class Main {
    /*
    *编写一个函数,计算字符串中含有的不同字符的个数。字符在ACSII码范围内(0127),换行表示结束符,不算在字符里。不在范围内的不作统计。
    输入描述:
    输入N个字符,字符在ACSII码范围内。
    输出描述:
    输出范围在(0
    127)字符的个数。
    */
    public static void main(String[] args) {
     Scanner sc = new Scanner(System.in);
     while (sc.hasNext()){
         char[] next = sc.next().toCharArray();
         HashSet<Integer> set = new HashSet<>();
         for (int i = 0; i < next.length; i++) {
             //(int)next.toCharArray()[i]
             int ascValue = (int)next[i];
              if(ascValue>0 && ascValue<127){
                 set.add(ascValue);
              }
         }
         System.out.println(set.size());
     }
    }

}