s=input() ans=0 len=0 for c in s: if c=='…': len+=1 ans=max(ans, len) else: len=0 print(ans)