let arr = readline().split('')
// 方法一
// let str = ''
// arr.forEach(el => {
//     if (str.indexOf(el) === -1) {
//         str += el
//     }
// })

// console.log(str.length)

console.log(Array.from(new Set(arr)).length)