s=input() d=[] ans=len(s) for i in s: if i=="<":d.append(0) if i=="=": if len(d):d[-1]+=1 if i==">": if len(d) and d[-1]: ans-=2+d.pop() else:d.clear() print(ans)