s=input() n=len(s) ans=0 f=False tmp=0 for i in s: if f: if i=='…': tmp+=1 else: ans=max(ans,tmp) tmp=0 f=False else: if i=='…': tmp=1 f=True else: continue ans=max(ans,tmp) print(ans)