s=input()
ss=set(s.lower())
print(len(ss))
print(ss)
count=0
for i in ss:
    if(i>='a' and i<='z'):
        count+=1
print(count)        

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: